Polymarket MCP Server
Provides read-only tools to query live Polymarket prediction-market data via the public Gamma API, enabling search, browsing, and detailed market and event information.
README
Polymarket MCP Server
An MCP (Model Context Protocol) server that exposes read-only tools for querying live Polymarket prediction-market data via the public Gamma API. Built with FastMCP.
No API key required — the Gamma API is public and unauthenticated.
Tools
All tools are read-only (readOnlyHint: true).
| Tool | Params | Purpose |
|---|---|---|
search_markets |
query, limit=10 |
Free-text search across event titles, market questions, and descriptions. Primary discovery tool when the user names a topic but not an ID. |
get_active_markets |
limit=10, offset=0, order="volume", ascending=False, tag_slug=None, volume_min=None |
Browse open, unresolved events sorted by a field. Use for "what's hot / most liquid / expiring soon". |
get_event |
event_id |
Full detail for one event and all of its nested markets. Use when the user cares about a whole topic (all candidates, all strike brackets). |
get_market |
market_id |
Full detail for a single market, including order-book edges (best_bid, best_ask, spread), last_trade_price, and 1d / 1w price change. |
get_active_markets sort keys
order |
Meaning |
|---|---|
volume (default) |
Cumulative USD traded — "biggest overall" |
liquidity |
USD currently in the order book — "where you can trade now" |
end_date |
Resolution deadline — "expiring soonest" |
start_date |
Listing date |
competitive |
Closest to 50/50 — "most contested" (best-effort) |
Known tag_slug values: politics, crypto, sports, elections, geopolitics. Omit for all categories.
Field coverage at a glance
Fields that require drilling down — search_markets returns less than the list/detail tools, and get_event returns less per-market than get_market:
| Field | search_markets |
get_active_markets |
get_event |
get_market |
|---|---|---|---|---|
best_bid / best_ask / last_trade_price |
❌ | ✅ | ✅ | ✅ |
volume_24hr |
❌ | ✅ (event-level) | ✅ (event-level) | ✅ |
one_day_price_change |
❌ | ❌ | ✅ | ✅ |
spread, one_week_price_change |
❌ | ❌ | ❌ | ✅ |
Full market description / resolution rules |
❌ | ❌ | ❌ | ✅ |
Domain model & data conventions
The server sends these conventions to clients on connect as part of its instructions, but they're worth knowing upfront:
- Event vs. market. An event is a topic that groups one or more related markets (e.g. event
Democratic Nominee 2028groups per-candidate markets). A market is a single binary question with a share price in[0, 1]that reflects the crowd-estimated probability. outcome_pricesandoutcomesare JSON-encoded strings, not lists. Parse withjson.loads, e.g.'["0.0135", "0.9865"]'→["0.0135", "0.9865"]. For binary markets, index 0 is YES, index 1 is NO, and values sum to ~1.0.outcome_pricesisnullfor untraded markets.- Prices are probabilities, not dollars.
best_bid,best_ask,last_trade_price, and the parsed entries ofoutcome_pricesare all in[0, 1]. - USD units.
volume,volume_24hr,liquidityare USD (float, may benull). - Dates.
end_dateis ISO 8601 UTC (e.g."2026-07-01T04:00:00Z") ornullwhen an event's sub-markets have staggered dates.
Dependencies
| Package | Version | Purpose |
|---|---|---|
| fastmcp | >=2.0.0 |
MCP server framework |
| httpx | >=0.27.0 |
HTTP client for the Polymarket Gamma API |
Installation
Requires Python 3.10+.
With uv (recommended)
git clone https://github.com/jiroamato/polymarket_mcp.git
cd polymarket_mcp
uv sync
uv sync reads pyproject.toml and installs all dependencies into an isolated virtual environment automatically.
With pip
git clone https://github.com/jiroamato/polymarket_mcp.git
cd polymarket_mcp
pip install -e .
Installing the package also registers a polymarket-mcp console script (see pyproject.toml) that you can use as the command in any MCP client config.
Usage
There are three ways to wire this server into an MCP client, in increasing order of "how much JSON you touch".
Option A — FastMCP CLI install (easiest)
FastMCP ships install commands that write the client config for you.
Claude Code:
fastmcp install claude-code src/polymarket_mcp/server.py
Claude Desktop:
fastmcp install claude-desktop src/polymarket_mcp/server.py --server-name "Polymarket"
Useful flags: --python 3.11, --project /path/to/polymarket_mcp, --with httpx, --env KEY=VALUE, --env-file .env. See fastmcp install --help for the full list.
Option B — Direct Python
If you've already installed dependencies into a Python environment (via uv sync or pip install -e .), point the client directly at that interpreter.
Claude Code — add to your .claude.json:
{
"mcpServers": {
"polymarket": {
"command": "/path/to/python",
"args": [
"/absolute/path/to/polymarket_mcp/src/polymarket_mcp/server.py"
],
"env": {
"PYTHONUNBUFFERED": "1"
}
}
}
}
Claude Desktop — add to claude_desktop_config.json:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"polymarket": {
"command": "/path/to/python",
"args": [
"/absolute/path/to/polymarket_mcp/src/polymarket_mcp/server.py"
],
"env": {
"PYTHONUNBUFFERED": "1"
}
}
}
}
Replace /path/to/python with the full path to your interpreter (e.g., C:/Users/you/miniforge3/python.exe, /Users/you/.venv/bin/python).
If you ran pip install -e ., you can instead use the installed console script:
{
"mcpServers": {
"polymarket": {
"command": "/path/to/polymarket-mcp"
}
}
}
Standalone:
python src/polymarket_mcp/server.py
# or, after `pip install -e .`:
polymarket-mcp
Option C — uv run (no pre-installed deps)
uv handles dependency isolation automatically — no need to install fastmcp or httpx yourself.
Claude Code:
claude mcp add polymarket -- uv run --with fastmcp --with httpx fastmcp run src/polymarket_mcp/server.py
Or add to your .claude.json:
{
"mcpServers": {
"polymarket": {
"command": "uv",
"args": [
"run",
"--with", "fastmcp",
"--with", "httpx",
"fastmcp",
"run",
"/absolute/path/to/polymarket_mcp/src/polymarket_mcp/server.py"
]
}
}
}
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"polymarket": {
"command": "uv",
"args": [
"run",
"--with", "fastmcp",
"--with", "httpx",
"fastmcp",
"run",
"/absolute/path/to/polymarket_mcp/src/polymarket_mcp/server.py"
]
}
}
}
Standalone:
uv run fastmcp run src/polymarket_mcp/server.py
Example prompts
Once connected, try asking your AI assistant:
- "What are the top prediction markets on Polymarket right now?"
- "Search Polymarket for markets about AI."
- "Show me the most liquid crypto prediction markets."
- "Which politics markets on Polymarket are expiring soonest?"
- "Get details on Polymarket event 903 and summarize the candidates."
- "For Polymarket market 573655, what's the current spread and 1-day price change?"
Development
# Install dependencies
uv sync
# Run the server locally
uv run fastmcp run src/polymarket_mcp/server.py
# Inspect tools interactively with the MCP Inspector (browser UI)
uv run fastmcp dev inspector src/polymarket_mcp/server.py
The server itself lives in a single file: src/polymarket_mcp/server.py. Each tool is a plain function decorated with @mcp.tool(annotations={"readOnlyHint": True}); FastMCP generates the JSON schema from the type hints and docstring automatically.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.