MCP.so
登录

Hedera Testnet Mirror Node MCP Server

@hedera-dev

关于 Hedera Testnet Mirror Node MCP Server

Hedera MCP server

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

hedera-dev

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mirrornode-mcp-server": {
      "command": "bun",
      "args": [
        "mcpServer.ts"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Hedera Testnet Mirror Node MCP Server?

It is a Model Context Protocol (MCP) server that interfaces with the Hedera Testnet Mirror Node API. Built using FastMCP and Zod, it automatically converts Hedera Mirror Node API endpoints (defined in OpenAPI specification format) into MCP‑compatible tools.

How to use Hedera Testnet Mirror Node MCP Server?

Clone the repository, install dependencies with npm install, then start the server with bun mcpServer.ts. The server listens for SSE connections on http://localhost:3333/hedera-testnet-mirror-node-api/sse.

Key features of Hedera Testnet Mirror Node MCP Server

  • Automatic conversion of OpenAPI endpoints into MCP tools
  • Server‑Sent Events (SSE) transport support
  • Input validation using Zod schemas
  • Proxies between an HTTP API client and the MCP transport

Use cases of Hedera Testnet Mirror Node MCP Server

  • Querying Hedera testnet transaction and account data via AI assistants
  • Enabling MCP‑compatible agents to interact with the Hedera network
  • Building automated workflows that read mirror node state
  • Testing and prototyping Hedera applications with a natural‑language interface

FAQ from Hedera Testnet Mirror Node MCP Server

What dependencies are required?

Bun (or another TypeScript runtime) and npm. All library dependencies (FastMCP, Zod, openapi‑zod‑client) are installed via npm install.

How are API endpoints converted into tools?

The server uses convertZodiosToMcp to process GET endpoints defined in an OpenAPI specification. Each endpoint is mapped to a Zod schema and registered as an MCP tool that executes the corresponding API call.

Where does the server get its data?

All data comes from the Hedera Testnet Mirror Node API. The server acts as a proxy and does not store or cache any data locally.

What transport does the server use?

The server communicates via Server‑Sent Events (SSE) and exposes an SSE endpoint at the path /hedera-testnet-mirror-node-api/sse.

Does the server support mainnet?

No, the server is explicitly designed for the Hedera Testnet Mirror Node only, as indicated by its name and the API client configuration.

评论

其他 分类下的更多 MCP 服务器