Back to Browse

Polymarket MCP Server

by 0xChron
Developer ToolsLow Risk9.5MCP RegistryLocal
Free

Server data from the Official MCP Registry

Read-only Polymarket prediction market data for AI agents.

About

Read-only Polymarket prediction market data for AI agents.

Security Report

9.5
Low Risk9.5Low Risk

Valid MCP server (2 strong, 4 medium validity signals). 1 known CVE in dependencies Package registry verified. Imported from the Official MCP Registry.

10 files analyzed · 2 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

https://gamma-api.polymarket.comOptional

Environment variable: GAMMA_URL

https://data-api.polymarket.comOptional

Environment variable: DATA_URL

15Optional

Environment variable: DEFAULT_TIMEOUT

127.0.0.1Optional

Environment variable: FASTMCP_HOST

8000Optional

Environment variable: FASTMCP_PORT

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-0xchron-polymarket-mcp": {
      "args": [
        "0xchron-polymarket-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Polymarket MCP

MCP server that exposes read-only Polymarket prediction market data to AI agents. Tools wrap Polymarket's public Gamma (market discovery) and Data (positions, portfolio, leaderboard) APIs. There is no CLOB integration — this server cannot place trades or read order books.

Tools

ToolDescription
search_marketsSearch markets by title or description
get_market_detailsFull details for a single market (by slug or Polymarket URL)
get_trending_marketsTrending events ranked by volume, liquidity, or competitiveness
get_market_holdersTop holders per outcome for a market (by condition ID, slug, or URL)
get_leaderboardTop traders ranked by P&L or volume
get_user_positionsOpen positions for a wallet address
get_user_performancePortfolio value, P&L, volume, and leaderboard rank for one wallet

All tools return markdown formatted for agent consumption. No API keys or wallet signing are required.

Resources

Static reference context (no API calls). Attach in MCP clients or read via Inspector.

URIDescription
polymarket://glossaryEvent, market, slug, conditionId, and wallet terminology
polymarket://categoriesLeaderboard categories, time periods, and tag slugs
polymarket://tool-guideWhen to use each tool and chaining workflows

Prompts

User-triggered workflow templates that orchestrate tools:

PromptDescription
research_marketMarket details → holders → research summary (slug or market_link)
compare_tradersSide-by-side performance and positions for two wallets
scan_trendingTrending events scan with optional tag_slug and limit

Requirements

  • Python 3.12+
  • uv (recommended) or Docker
  • Node.js (optional, only for MCP Inspector)

Quick start

This server uses streamable HTTP at http://127.0.0.1:8000/mcp. Start the server first, then connect your MCP client to that URL.

git clone https://github.com/0xChron/polymarket-mcp.git
cd polymarket-mcp
uv sync
uv run polymarket-mcp

On Windows, use the same commands in PowerShell, Command Prompt, or Git Bash. Leave the terminal open while your MCP client is connected.

Docker

Works the same on all platforms if Docker Desktop is installed:

git clone https://github.com/0xChron/polymarket-mcp.git
cd polymarket-mcp
docker build -t polymarket-mcp .
docker run --rm -p 8000:8000 -e FASTMCP_HOST=0.0.0.0 polymarket-mcp

FASTMCP_HOST=0.0.0.0 lets the server accept connections from outside the container.

Verify the server

Open MCP Inspector in another terminal:

npx -y @modelcontextprotocol/inspector

Connect to http://localhost:8000/mcp using the Streamable HTTP transport.

Connect from an MCP client

This server uses the streamable-http transport (not stdio). Start the server first (see Quick start), then add the config below to your MCP client.

Claude Desktop

Go to Claude → Settings → Developer → Edit Config to open claude_desktop_config.json, then include the following:

{
  "mcpServers": {
    "polymarket": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

If you already have other MCP servers configured, add the "polymarket" entry inside your existing mcpServers object instead of replacing the whole file.

Config file location if you prefer to edit it manually:

PlatformPath
macOS~/Library/Application Support/Claude/claude_desktop_config.json
Windows%APPDATA%\Claude\claude_desktop_config.json

Save the file and fully quit and restart Claude Desktop. The server must be running in a terminal before you start a new chat.

Cursor

Go to Settings → Tools & MCP → New MCP Server to open ~/.cursor/mcp.json (Windows: %USERPROFILE%\.cursor\mcp.json), then add the same polymarket entry:

{
  "mcpServers": {
    "polymarket": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

Restart Cursor after saving.

Example agent prompts

Once connected, an agent can call tools naturally:

  • "Search Polymarket for active markets about Bitcoin ETFs"
  • "What are the trending markets right now?"
  • "Who are the top holders of the Trump election market?"
  • "Show the all-time P&L leaderboard for crypto traders"
  • "Get details for https://polymarket.com/event/will-bitcoin-hit-100k"
  • "Show open positions for wallet 0x…"
  • "What is the all-time P&L and leaderboard rank for 0x…?"

In MCP Inspector, try the Prompts tab (e.g. research_market) or read Resources for the glossary and tool guide.

Configuration

Optional environment variables override API endpoints and server settings.

macOS / Linux / Git Bash

export FASTMCP_HOST=0.0.0.0
export FASTMCP_PORT=8000
uv run polymarket-mcp

Windows (PowerShell)

$env:FASTMCP_HOST = "0.0.0.0"
$env:FASTMCP_PORT = "8000"
uv run polymarket-mcp
VariableDefaultDescription
GAMMA_URLhttps://gamma-api.polymarket.comGamma API base URL
DATA_URLhttps://data-api.polymarket.comData API base URL
DEFAULT_TIMEOUT15HTTP request timeout (seconds)
FASTMCP_HOST127.0.0.1Bind address (0.0.0.0 for Docker)
FASTMCP_PORT8000Listen port

Development

uv run polymarket-mcp          # Start the server
uv run pytest                  # Run tests
npx -y @modelcontextprotocol/inspector   # Open MCP Inspector
docker build -t polymarket-mcp .         # Build Docker image

On macOS/Linux, make run, make test, and similar shortcuts in the Makefile wrap the same commands.

See docs/PROJECT_KNOWLEDGE_BASE.md for architecture, conventions, and how to add new tools.

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!