A Model Context Protocol server for Pi Network
Pion connects AI agents — Claude, Cursor, and any MCP-compatible client — to the Pi Network blockchain. Version 0.1 exposes read-only tools for wallet balances, payment history, and transaction verification against public testnet infrastructure: no API keys, no wallet secrets, nothing that can move value. It is the first step toward agents that can transact on Pi safely, with humans holding the leash.
Every v0.1 tool is a read against Pi's public Horizon API. An agent can look, verify, and reason about on-chain state — it cannot spend, sign, or hold anything.
| Tool | What the agent gets |
|---|---|
get_wallet_balance | Pi and token balances for any wallet address |
get_account_payments | Payment history for an account |
query_transaction | Details and verification of a specific transaction |
Add Pion to your MCP client's configuration — for Claude Desktop, that's claude_desktop_config.json:
{
"mcpServers": {
"pion": {
"command": "npx",
"args": ["-y", "pion-mcp"]
}
}
}
Restart the client and ask your agent for a testnet wallet balance. No keys to configure — v0.1 talks only to public endpoints.