Polymarket MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Polymarket MCP Serversearch for markets about the next US presidential election"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
|
| Free-text search across event titles, market questions, and descriptions. Primary discovery tool when the user names a topic but not an ID. |
|
| Browse open, unresolved events sorted by a field. Use for "what's hot / most liquid / expiring soon". |
|
| 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). |
|
| Full detail for a single market, including order-book edges ( |
get_active_markets sort keys
| Meaning |
| Cumulative USD traded — "biggest overall" |
| USD currently in the order book — "where you can trade now" |
| Resolution deadline — "expiring soonest" |
| Listing date |
| 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 |
|
|
|
|
| ❌ | ✅ | ✅ | ✅ |
| ❌ | ✅ (event-level) | ✅ (event-level) | ✅ |
| ❌ | ❌ | ✅ | ✅ |
| ❌ | ❌ | ❌ | ✅ |
Full market | ❌ | ❌ | ❌ | ✅ |
Related MCP server: PolyMarket MCP Server
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 |
| MCP server framework | |
| 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 syncuv 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.pyClaude 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.jsonWindows:
%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-mcpOption 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.pyOr 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.pyExample 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.pyThe 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jiroamato/polymarket_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server