目录 / polymarket-mcp
polymarket-mcp
Polymarket data for AI agents. Plug this into Claude Desktop, Cursor, Cline, or any MCP-compatible client and ask things like: - "Who are the top 10 Polymarket wallets by 30-day profit?" - "Show me recent BUYs from smart money in the last 30 minutes" - "What's the market info for `mlb-nyy-tor-2026-06-13`?" Fully **stateless** — no database, no setup, no API keys. All data comes from public sources (our hosted signed Oracle endpoint + Polymarket's public APIs). **6 tools:** - `get_top_wallets` — top wallets by 30-day realized PnL - `get_top_markets` — top active markets by volume - `get_wallet_history` — recent trades for a wallet (live) - `get_market_info` — market details by slug - `get_smart_money_flow` — live BUYs from top wallets - `get_signed_snapshot` — ECDSA-signed Polymarket snapshot The Oracle snapshot is signed with secp256k1 (same curve as Ethereum). Signer address is published in every response — verify it yourself if you need provenance guarantees.
接入信息
- 传输形态
- http
- 鉴权方式
- 鉴权未知
- 端点
https://polymarket-mcp--istarley2000.run.tools
{
"mcpServers": {
"polymarket-mcp": {
"url": "https://polymarket-mcp--istarley2000.run.tools"
}
}
}
能力清单
| 工具 | 说明 |
|---|---|
| get_top_wallets | Top Polymarket wallets ranked by realized PnL (last 30 days). Uses the latest signed Oracle snapshot (refreshed every minute on our side). Useful for: smart-money tracking, copy-trade strategies, alpha-trader discovery, building wallet leaderboards. Args: limit: Max wallets to return (1-100, default 25). Snapshot already contains the top 100 — this just caps the result. |
| get_top_markets | Top active Polymarket markets by volume (last 30 days). Reads from the same signed Oracle snapshot as get_top_wallets. Args: limit: Max markets to return (1-100, default 25). |
| get_wallet_history | Recent trade history for a specific Polymarket wallet (live). Pulls the latest TRADE events directly from Polymarket's public Data API. Use this for real-time tracking of a specific trader. Args: wallet: 0x-prefixed Polymarket wallet address (proxy address). limit: Number of recent trades to return (1-200, default 50). |
| get_market_info | Detailed info about a Polymarket market by slug. Uses Polymarket's Gamma API. Works for both active and closed markets. Args: slug: Market slug (e.g. 'btc-updown-5m-1781000000', 'mlb-nyy-tor-2026-06-13'). |
| get_smart_money_flow | Recent BUY trades from top-performing Polymarket wallets ('smart money flow'). Combines the top-N wallets from our signed Oracle snapshot with live activity from each wallet via Polymarket Data API. Filters to BUYs in the last N minutes — surfaces markets where smart money is accumulating right now. Args: lookback_minutes: Look only at trades from the last N minutes (1-1440, default 60). top_wallets_n: How many top wallets to query (1-50, default 20). max_results: Cap on returned trades (1-200, default 50). |
| get_signed_snapshot | Current ECDSA-signed Polymarket data snapshot. Returns the full signed JSON (top markets + top wallets + signature block). Same source as our public Oracle endpoint — verify the signature against the published signer address. Useful for: on-chain references, immutable audit trails, decentralized verification of Polymarket data. |
提交举报 / 纠错
侵权举报经核验成立后,我们会即时下线该条目并删除已存的内容副本。