Polymarket MCP Server

Polymarket MCP Server

Enables AI agents to query Polymarket data such as top wallets, live trades, market details, and smart money flows using natural language through MCP tools.

Category
Visit Server

README

Polymarket MCP Server

Polymarket data for AI agents. Plug this into Claude Desktop, Cursor, Cline, or any other MCP-compatible client and ask your agent 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"
  • "Pull the latest trades for wallet 0xa5ea13..."
  • "What's the market info for mlb-nyy-tor-2026-06-13?"

The server is fully stateless — it pulls everything from public sources (our hosted signed Oracle + Polymarket's public APIs). No local database, no setup, no API keys.


Tools

Tool What it does
get_top_wallets Top wallets ranked by realized PnL over the last 30 days
get_top_markets Top active markets by volume
get_wallet_history Recent trades of a specific wallet (live from Polymarket Data API)
get_market_info Market details by slug (active or closed)
get_smart_money_flow Live BUYs from top wallets in the last N minutes
get_signed_snapshot Current ECDSA-signed Polymarket snapshot

Resources

  • polymarket://wallets/top — top 25 wallets (JSON)
  • polymarket://markets/top — top 25 markets (JSON)

Install

Claude Desktop

Edit claude_desktop_config.json (location varies by OS, see Anthropic docs):

{
  "mcpServers": {
    "polymarket": {
      "command": "python",
      "args": ["-m", "mcp_server.server"]
    }
  }
}

Restart Claude Desktop. The tools will appear in the tools list.

Cursor

In your project's .cursor/mcp.json:

{
  "mcpServers": {
    "polymarket": {
      "command": "python",
      "args": ["-m", "mcp_server.server"]
    }
  }
}

Smithery (one-click)

Find this server in the Smithery catalogue and click Install.


Run as HTTP server

For web agents or Smithery-hosted setups:

python -m mcp_server.server --http --port 8000

Endpoint: http://localhost:8000/mcp (streamable HTTP transport).


Data sources

Source What we read Auth
Our Oracle endpoint Signed snapshot: top markets + top 100 wallets, refreshed every 60 seconds None
Polymarket Data API (/activity) Live wallet trade history None
Polymarket Gamma API (/markets) Market details by slug None

The Oracle snapshot is ECDSA-signed (secp256k1). The signer address is published in each response — verify it yourself if you need provenance guarantees.


Example agent prompt (Claude / Cursor)

"Find the top 5 Polymarket wallets by 30-day PnL, then for each pull their last 5 trades and tell me which markets they are accumulating in right now."

The agent will call get_top_wallets, then loop get_wallet_history, then summarise — entirely through the MCP tools, no extra integration needed.


License

MIT. The data is public (Polymarket exposes it through their own APIs); we just package it for AI agents.


Pricing tiers (planned, post-launch)

  • Free — everything in this README, no rate limits beyond what Polymarket/Cloudflare enforce.
  • Pro ($9/mo, planned) — own watchlists, webhook delivery, custom signal alerts.
  • Enterprise ($49/mo, planned) — dedicated endpoint, historical bulk queries, SLA.

Currently everything is free while we onboard early users — open an issue if you want notification when paid tiers launch.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured