Skip to main content
The MCP server lets your AI agent talk to Radion through tools. Connect it to Claude Code, Codex, Cursor, VS Code, or any MCP-compatible tool. Each tool maps to one Radion REST endpoint, so your agent can read on-chain Polymarket data — markets, traders, events, search, and the orderbook — without writing any HTTP code.

Endpoint

https://mcp.radion.app/mcp

Authentication

Every request needs an API key. Send it in the X-API-Key header (or as an Authorization: Bearer token). If your client can’t set custom headers (for example, Claude Cowork), pass the key as an api_key query string instead:
https://mcp.radion.app/mcp?api_key=YOUR_API_KEY
Use the header when your client supports it. Keys in URLs can leak through proxies and client history, so rotate any key you put in a query string if it may have been seen. Get an API key from the dashboard.

Setup

claude mcp add --transport http "Radion" "https://mcp.radion.app/mcp" \
  --header "X-API-Key: YOUR_API_KEY"

Available tools

Each tool returns the same JSON as the matching REST endpoint.
ToolWhat it does
list_eventsList events (groups of related markets). Pages with a cursor.
get_eventGet one event by its numeric id or slug.
list_marketsList markets. Pages with a cursor.
get_marketGet one market by its condition id or slug.
searchSearch Polymarket markets, topics, and profiles by text.

Orderbook

ToolWhat it does
get_orderbookGet the full orderbook depth (bids and asks) for a token_id.
get_midpointGet the midpoint price (between best bid and ask) for a token.
get_spreadGet the bid-ask spread for a token.
get_priceGet the best bid or ask price for a token (side = buy/sell).
get_last_trade_priceGet the last executed trade price for a token.

Health

ToolWhat it does
healthCheck whether the MCP server is up.

Example prompts

Once connected, try these in your AI tool:
  • “List the top 10 Polymarket markets by volume.”
  • “What is the PnL for trader 0x1234…?”
  • “Search Polymarket for markets about the election.”
  • “Show the most recent trades for this market slug.”
  • “Who is on the Polymarket profit leaderboard right now?”

Rate limits and plans

Rate limits match the REST API rate limits. Your API key plan applies.
Last modified on July 7, 2026