pion-mcp · v0.1 · Pi Testnet github · npm

Pion.

A Model Context Protocol server for Pi Network

unofficial community project · not affiliated with Pi Network

Abstract

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.

Fig. 1 — In particle physics, the pion is the π meson, and pion decays are studied in searches for MCPs (millicharged particles). A π particle producing MCPs: we found the name irresistible.

1.Tools

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.

ToolWhat the agent gets
get_wallet_balancePi and token balances for any wallet address
get_account_paymentsPayment history for an account
query_transactionDetails and verification of a specific transaction

2.Quickstart

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.

3.Status

4.References

  1. Pion source repository — Apache-2.0, contributions welcome.
  2. pion-mcp on npm
  3. Model Context Protocol — the open standard Pion implements.
  4. Pi Platform documentation