Skip to main content
The RPC node exposes an MCP endpoint at https://rpc.radion.app/mcp. An AI client (Claude Code, Codex, Cursor, and others) can call the node with structured, read-only tools instead of hand-written JSON-RPC. It is the same node and the same key as the RPC. MCP is a paid feature; the free plan gets a 403 Forbidden.

Endpoint

https://rpc.radion.app/mcp
Transport is SSE (Server-Sent Events) over HTTPS. Authenticate with your API key in the X-API-Key header, same as the RPC.

Connect a client

Add the endpoint to your MCP client config. Set your API key as a header.
Claude / Cursor mcp config
{
  "mcpServers": {
    "radion-rpc": {
      "url": "https://rpc.radion.app/mcp",
      "headers": { "X-API-Key": "YOUR_API_KEY" }
    }
  }
}
Once connected, the client lists the node’s tools and can call them on its own.

What it exposes

Read-only tools over the Polygon node, including:
  • Ethereum standardeth_blockNumber, eth_getBlockByNumber, eth_getBalance, eth_call, eth_getLogs, eth_getTransactionReceipt.
  • Erigonerigon_getBlockByTimestamp, erigon_getBalanceChangesInBlock, and more.
  • Otterscan tracingots_getInternalOperations, ots_traceTransaction, ots_searchTransactionsAfter.
No write tools. Nothing that submits a transaction or changes state.

Limits

  • eth_getLogs block ranges are capped, same as the RPC. Keep ranges small and filter by address and topic.
  • Heavy tracing tools may be capped or restricted on lower tiers.

Get access

MCP is on the Starter, Pro, and Enterprise plans. Use the same key as the REST API and RPC. See Authentication.
Looking for Polymarket market and orderbook data over MCP instead of the raw node? See the Radion MCP server.
Last modified on July 7, 2026