avalanche-mcp-server
インストール
ホステッド版 — インストール不要。 Ava Labsのbuild.avax.network/api/mcpと同じ構成の、APIキー不要のパブリックなStreamable HTTPエンドポイントです。
claude mcp add avalanche --transport http https://avalanche-mcp.dev/mcpクライアント | 設定 |
Claude Code | 上記のコマンド、または |
Cursor / Windsurf |
|
Claude Desktop |
|
ローカル / オフライン |
|
任意のHTTPクライアント |
|
確認するにはClaude Codeで/mcpを実行してください — avalanche · 41 toolsが表示されるはずです。
Related MCP server: Somnia MCP Server
機能
平易な言葉で質問すると、エージェントがツールを選び、出典を明示します。
› What changes in the Helicon upgrade for my C-Chain indexer?
⏺ avax_upgrade_lookup(query: "Helicon")
⏺ avax_acp_lookup(query: "ACP-194")
⏺ avax_get_doc(content/docs/primary-network/helicon-upgrade.mdx)
Helicon (AvalancheGo v1.15.0-fuji) is live on Fuji since 2026-07-28; mainnet is not
scheduled yet. ACP-194 Continuous Execution decouples consensus from execution, so a
block's state root settles after a τ delay (~5 s) — don't treat "latest" as executed
state. ACP-283 makes the minimum gas price dynamic, so never hardcode a fee floor.
Sources: build.avax.network/docs/primary-network/helicon-upgrade
build.avax.network/docs/acps/194-continuous-execution初日に試したいその他の質問:
"Fuji上で5つのバリデータを持つ許可制エンタープライズL1を計画し、genesisを生成する。"
"NativeMinterプリコンパイルと、起動後にupgrade.jsonで有効化する方法を説明する。"
"リレイヤーを設定して、TeleporterでFuji C-ChainからDispatchにメッセージを送信する。"
"どのACPが有効化されているか、ACP-176はガスに何を変えるのか?"
"RPCに接続するとCLIが
subnet not trackedと表示する。何が問題か?"
機能一覧
41のツール、すべて読み取り専用。 トランザクションの署名やブロードキャストは一切行いません。
領域 | ツール数 | 内容 |
ナレッジ | 7 | build.avax.network(ドキュメント、Academy、234のインテグレーション、ブログ)、Subnet-EVMプリコンパイルドキュメント、ICMコントラクト、Avalanche CLIリファレンスのバンドル済みインデックスに対する全文検索 — 9.9kチャンク、すべてのヒットにソースURL付き。アーキテクチャ、L1起動、プリコンパイル、ICM、ガス、トラブルシューティングに関する厳選ガイド。 |
プロトコル & アップグレード | 4 | 構造化されたステータス / トラック / 著者を持つ全36のACP。日付、バージョン、開発者への影響を含むBanff → Heliconアップグレードのタイムライン。ノードからのライブACPシグナリング。 |
ワークフロー | 6 | カスタマイズされたL1起動プラン、適切なプリコンパイルを含む有効な |
ライブEVM | 8 | C-Chain、Fuji、既知のL1、または任意のRPC URL:残高、ブロック、レシート、 |
P-Chain · X-Chain · ノード | 8 | バリデータ、サブネットとL1、ステーキングの経済性、トランザクションステータス、UTXO残高、ノードとネットワーク情報。 |
Avalanche Data API | 5 | インデックス化されたチェーン、ERC-20残高、トランザクション履歴、トークンメタデータ、L1バリデータ。 |
ホステッド連携 | 3 |
|
さらにMCP リソース(avax://docs/{path}、avax://guides/{name}、avax://networks)とプロンプト(avalanche_launch_l1、avalanche_deploy_contract、avalanche_icm_bridge、avalanche_learn)も提供。完全なツールリストはavalanche-mcp.dev/#toolsまたはtools/listで確認できます。
検証済み、推測ではありません
モデルがよく間違える事実はコードに固定され、ドキュメントと照合されています:C-Chainの最小ベースフィーはFortuna(ACP-176)以降1 weiであり、25 nAVAXではありません。subnet-evmとicm-contractsは現在avalanchego/graftとicm-servicesにあります。Heliconは2026年8月時点でFujiのみ。すべての回答には、出典となったbuild.avax.networkまたはGitHubのURLが付いています。
ナレッジソース
インデックスはnpm run build-indexによって公式リポジトリから構築され、パッケージ内に同梱されるため、最初の検索もオフラインで動作します:
ソース | 内容 |
| ドキュメント、Academy(L1およびブロックチェーントラック)、インテグレーション、ブログ |
| すべてのACP READMEを構造化メタデータにパース |
| README、 |
| Teleporter / ICTTコントラクト、リレイヤー、署名アグリゲーター |
| コマンドリファレンス、テンプレート |
avax_list_topicsはインデックスのビルド日を報告し、エージェントが情報の鮮度を把握できます。avax_fetch_live_docは、鮮度が重要な場合に任意のページの最新版を取得します。ドキュメント例に含まれる認証情報のような文字列は、ビルド時にマスクされます。
設定
設定は不要です。オプションの環境変数(ローカルモード):
変数 | 目的 |
| Avalanche Data APIツールのより高いレート制限。無料キーはbuild.avax.networkで取得できます。( |
| Data APIのベースURLを上書き |
|
|
セルフホスティング
Nodeが動作する任意の環境でHTTPトランスポートを実行:
npx -y avalanche-mcp-server --http # POST http://localhost:3333/mcp (PORT to change)または、Web標準のランタイム(Next.jsのルートハンドラー、Cloudflare Workers、Hono)にマウント:
import { handleMcpRequest } from "avalanche-mcp-server";
export const POST = (req: Request) => handleMcpRequest(req);これはまさにavalanche-mcp.devが提供している方法です(ソース)。レスポンスはCORSが開放されたステートレスなJSONなので、ブラウザベースのクライアントでも動作します。
公式Avalanche MCPとの連携
Ava LabsのホステッドMCPは、Builder Hub検索、CLI / RPCルックアップ、ランブックで常に最新です。このサーバーは、オフライン知識、構造化されたACPとアップグレード、ライブEVMツール、エンドツーエンドのワークフローを追加します。両者は組み合わせて使えます:
claude mcp add avalanche --transport http https://avalanche-mcp.dev/mcp
claude mcp add avalanche-hosted --transport http https://build.avax.network/api/mcp
claude mcp add avalanche-chainkit -- npx -y @avalanche-sdk/chainkit mcp-server
claude mcp add avalanche-avacloud -- npx -y @avalabs/avacloud-sdk mcp-server --apikey $AVACLOUD_API_KEYavax_hosted_callはすでにこのサーバー内部からホステッドサーバーをプロキシするため、1つの登録でほとんどのセットアップをカバーできます。
開発
git clone https://github.com/Eelvanpsd/Avalanche-mcp.git && cd Avalanche-mcp
npm install && npm run build # the index ships in the repo
npm run dev # stdio server via tsx
npm run inspect # MCP Inspector UI
npx tsx scripts/smoke.ts # end-to-end tool check over stdio
REFRESH=1 npm run build-index # re-download sources and rebuild the index拡張は各1ファイルで完結します:厳選ガイドはsrc/knowledge/guides.ts、ネットワークレジストリはsrc/config/networks.ts、アップグレードタイムラインはsrc/knowledge/upgrades.ts、新しいソースはscripts/build-index.ts。
ライセンス
MIT。Avalanche MCPは独立したコミュニティ構築のプロジェクトであり、Ava LabsやAvalanche Foundationとは提携しておらず、その承認も受けていません。AvalancheおよびAvalancheマークは各所有者の商標です。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA comprehensive toolkit for building AI agents with blockchain capabilities, enabling interactions with multiple blockchain networks for tasks like wallet management, fund transfers, smart contract interactions, and cross-chain asset bridging.4GPL 3.0
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with the Somnia blockchain network, including documentation search, blockchain queries, wallet management, cryptographic signing, and on-chain operations.

Bink MCP Serverofficial
FlicenseNot gradedqualityDmaintenanceEnables AI agents to perform blockchain operations like wallet management, token info, DeFi swaps, cross-chain bridging, and price checking across Ethereum, BNB Chain, and Solana.- AlicenseNot gradedqualityBmaintenanceEnables AI agents to perform complex crypto operations like cross-chain routing, contract decoding, portfolio management, and anti-rug security checks, returning unsigned transactions for safe signing by the agent.MIT
Related MCP Connectors
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base via x402.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Eelvanpsd/Avalanche-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server