Skip to main content
The @0xinsider/mcp server lets AI agents access prediction market intelligence directly — trader grades, whale trades, smart money signals, and insider detection. The package is live on npm: @0xinsider/mcp. It works with Claude Code, Cursor, Codex, Gemini CLI, and other stdio-compatible MCP clients.

Install

Run the interactive setup:
npx -y @0xinsider/mcp init
This detects Claude Code and writes the MCP server block automatically.Or add manually to ~/.claude/settings.json:
{
  "mcpServers": {
    "0xinsider": {
      "command": "npx",
      "args": ["-y", "@0xinsider/mcp"],
      "env": {
        "OXINSIDER_API_KEY": "oxi_sk_live_..."
      }
    }
  }
}

Tools

The server exposes 6 read-only tools:
ToolDescription
get_traderLook up a trader by wallet address or username — grade, P&L, win rate, strategy, quant metrics
get_whale_tradesRecent large trades with signal scoring, filterable by size/category/grade
get_leaderboardTop-ranked traders (S/A/B grades) with optional category/strategy filters
search_marketsSearch prediction markets by keyword
get_market_intelSmart money flow analysis for a specific market
get_insider_radarSuspicious trading pattern detection
All tools have readOnlyHint: true — they never modify data. get_trader accepts either an Ethereum wallet address or a known trader username like swisstony.

Resources

Static and live data available as MCP resources:
ResourceURIDescription
API Docsoxinsider://docs/apiComplete API reference
Agent Instructionsoxinsider://docs/agentsDecision tree for AI agents
Leaderboardoxinsider://data/leaderboardCurrent top 20 traders
Whale Tradesoxinsider://data/whale-tradesLatest 20 whale trades

Prompts

Pre-built prompt templates for common workflows:
PromptDescription
analyze_traderDeep analysis of a trader — performance, risk profile, category strengths
market_reportSmart money flow report for a market topic
trading_signalsScan for high-conviction signals across markets

Example Usage

Once configured, ask your AI agent:
Who are the top prediction market traders right now?
What are whales buying in crypto markets?
Analyze trader 0x1234... — is their strategy worth following?
Analyze trader swisstony — is their strategy worth following?
Are there any suspicious trading patterns on the Trump election market?
Generate a smart money report for AI markets

Environment Variables

VariableRequiredDescription
OXINSIDER_API_KEYYesYour API key (oxi_sk_live_...)
OXINSIDER_API_URLNoOverride API base URL
The MCP server uses the same API key and rate limits (100 req/min) as direct API access. Get your key at 0xinsider.com/developers.