Hedera テストネット ミラー ノード MCP サーバー
このリポジトリには、Hedera Testnet Mirror Node APIと連携するModel Context Protocol(MCP)サーバーが含まれています。このサーバーは、MCPサーバー作成用のTypeScriptフレームワークであるFastMCPを使用して構築されています。入力検証にはZodスキーマを使用しています。
特徴
- エンドポイント統合: OpenAPI 仕様形式で定義された Hedera ミラー ノード API を MCP 互換ツールに自動的に変換します。
- サーバー送信イベント (SSE) サポート: クライアントは SSE トランスポート経由でこの MCP サーバーに接続できません。
- スキーマ検証: Zod を使用して、リクエスト パラメータが定義されたスキーマに準拠していることを確認します。
前提条件
サーバーを実行する前に、以下がインストールされていることを確認してください。
- Bun 、または Typescript を直接実行できるその他の環境。
インストール
(1)リポジトリのクローンを作成する
(2)プロジェクトディレクトリに移動する
(3)依存関係をインストールする
使用法
MCP サーバーを起動するには:
起動が成功すると、次のように表示されます。
サーバーは構成された SSE エンドポイントを介してアクセス可能になります。
http://localhost:3333/hedera-testnet-mirror-node-api/sse
プロジェクト構造
mcpServer.ts
: MCP サーバーを初期化して起動するエントリ ポイント。openApiZod.ts
: ミラー ノード API エンドポイント定義と、zodios
(zod
スキーマ定義が拡張されたaxios
など) を使用する API クライアントが含まれています。- このファイルは
openapi-zod-client
を使用してプログラム的に生成され、いくつかの手動変更が加えられていることに注意してください。
- このファイルは
仕組み
(1)APIクライアントの作成
createApiClient
関数を使用して、Hedera Testnetミラーノード用のAPIクライアントが作成されます。MCPサーバーは、このHTTP APIクライアントと独自のSSEトランスポート間のプロキシとして機能します。
(2)エンドポイント変換:
endpointDefinitions
からの各エンドポイント定義は、 convertZodiosToMcp
関数によって処理されます。
- エンドポイントが
GET
メソッドを使用していることを検証します。 - パラメータを Zod スキーマにマップします。
- 対応する API 呼び出しを行って結果を返す実行関数を定義します。
- ツールを MCP サーバーに登録します。
(3)サーバーの初期化:
MCP サーバーは SSE トランスポートを使用して起動されます。
依存関係
- FastMCP : MCP サーバーを構築するためのフレームワーク。
- Zod : TypeScript ファーストのスキーマ宣言および検証ライブラリ。
- openapi-zod-client : OpenAPI 仕様ファイルから Zodios コードを生成します。
著者
ライセンス
マサチューセッツ工科大学
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Hedera Testnet Mirror Node API とインターフェースし、OpenAPI 定義のエンドポイントを Server-Sent Events (SSE) 経由でアクセスできる MCP 互換ツールに変換するサーバー。
Related MCP Servers
- -securityAlicense-qualityAn MCP server that provides healthcare tools for interacting with FHIR data and medical resources on EMRs like Cerner and EpicLast updated -68JavaScriptMIT License
- -securityAlicense-qualityAn MCP server that exposes HTTP methods defined in an OpenAPI specification as tools, enabling interaction with APIs via the Model Context Protocol.Last updated -8PythonMIT License
- -securityFlicense-qualityA Model Context Protocol server that enables interactions with the Hedera network, providing tools for wallet creation, balance checking, transaction building, and sending signed transactions.Last updated -JavaScript
- -securityFlicense-qualityA production-ready Node.js server that enables decentralized communication between AI agents on the Hedera network, implementing the Model-Context-Protocol architecture with support for multiple Hedera Consensus Service standards.Last updated -TypeScript