A read-only aggregator that pulls live odds from Polymarket, Kalshi, and Limitless, plus Manifold sentiment data kept architecturally separate. Six tools let you search markets by keyword, generate topic briefs, browse trending contracts, compare the same event across venues, surface cross-venue price discrepancies, and inspect individual platforms. Every response includes data freshness timestamps, liquidity flags, settlement risk warnings, and explicit disclaimers. No trading, no API keys, no position management. Runs as a hosted service over streamable HTTP. Useful when you need to compare prediction market signals across venues without opening five browser tabs or want an LLM to synthesize what the crowd thinks will happen next week.
Public tool metadata for what this MCP can expose to an agent.
search_marketsSearch live prediction markets and event contracts across Polymarket, Kalshi, Limitless (real-money) and Manifold (sentiment). Use for queries on election odds, political markets, Fed rate decisions, crypto prices, sports outcomes, geopolitics, and other binary markets with cr...3 paramsSearch live prediction markets and event contracts across Polymarket, Kalshi, Limitless (real-money) and Manifold (sentiment). Use for queries on election odds, political markets, Fed rate decisions, crypto prices, sports outcomes, geopolitics, and other binary markets with cr...
limitnumberquerystringreal_money_onlybooleandiscover_marketsBrowse trending, high-volume, fast-moving, or high-disagreement prediction markets across Polymarket, Kalshi, Limitless, and Manifold. Use when the user wants to explore what's happening — "what's hot on Polymarket today", "show me biggest political markets", "what events are...4 paramsBrowse trending, high-volume, fast-moving, or high-disagreement prediction markets across Polymarket, Kalshi, Limitless, and Manifold. Use when the user wants to explore what's happening — "what's hot on Polymarket today", "show me biggest political markets", "what events are...
limitnumbersort_bystringvolume · newest · ending_soondefault: volumecategorystringreal_money_onlybooleancompare_marketsCompare the same event contract across Polymarket, Kalshi, and Limitless side-by-side: probability, liquidity, settlement rules, and venue type. Use when the user wants to know "what's the spread between Polymarket and Kalshi on X" or "which venue has better liquidity for Y"....2 paramsCompare the same event contract across Polymarket, Kalshi, and Limitless side-by-side: probability, liquidity, settlement rules, and venue type. Use when the user wants to know "what's the spread between Polymarket and Kalshi on X" or "which venue has better liquidity for Y"....
limitnumberquerystringscan_discrepanciesSurface cross-venue price discrepancies between Polymarket, Kalshi, and Limitless as a discovery feed for price discovery and divergence detection. Default threshold is 0.5% spread, below typical round-trip fees — most results are informational, not tradable arbitrage. Raise `...4 paramsSurface cross-venue price discrepancies between Polymarket, Kalshi, and Limitless as a discovery feed for price discovery and divergence detection. Default threshold is 0.5% spread, below typical round-trip fees — most results are informational, not tradable arbitrage. Raise `...
limitnumberquerystringmin_spreadnumbermin_volumenumbermarket_briefGenerate a synthesized brief for a topic, combining real-money signals from Polymarket, Kalshi, and Limitless with Manifold community sentiment. Use for analytical queries like "what do markets think about the 2028 election", "odds on a Fed rate cut", or "how is crypto priced...4 paramsGenerate a synthesized brief for a topic, combining real-money signals from Polymarket, Kalshi, and Limitless with Manifold community sentiment. Use for analytical queries like "what do markets think about the 2028 election", "odds on a Fed rate cut", or "how is crypto priced...
limitnumbertopicstringmin_volumenumberreal_money_onlybooleaninspect_platformInspect a single named venue. Returns available capabilities, market data for the query, and metadata quality flags. Use when the user explicitly names a venue — "show me Polymarket markets on AI", "what's on Kalshi for Q4 inflation", "Manifold markets about geopolitics". For...3 paramsInspect a single named venue. Returns available capabilities, market data for the query, and metadata quality flags. Use when the user explicitly names a venue — "show me Polymarket markets on AI", "what's on Kalshi for Q4 inflation", "Manifold markets about geopolitics". For...
limitnumberquerystringplatformstringpolymarket · kalshi · opinion · limitless · smarkets · myriadThe AI-native intelligence layer for prediction markets.

Parlay is a hosted MCP server for searching, comparing, and briefing prediction markets from AI assistants. It is a PMXT-backed aggregator over Polymarket, Kalshi, and Limitless, with Manifold treated separately as a sentiment-only signal. This repository is the public bundle and connection reference for the hosted Parlay service at https://mcp.parlay.run/mcp; it does not contain the MCP server implementation.
| Tool | What it does |
|---|---|
search_markets | Cross-venue keyword search for live prediction markets and event contracts |
market_brief | Synthesized brief on a topic, combining real-money signals with community sentiment |
discover_markets | Browse trending, high-volume, fast-moving, or high-disagreement markets |
compare_markets | Compare the same event contract across venues side-by-side — probability, liquidity, settlement |
scan_discrepancies | Surface cross-venue price discrepancies as a discovery feed (informational, not trade recommendations) |
inspect_platform | Drill into a single named venue |
Every tool response carries unified metadata: data freshness, venues queried, venues failed, market type (real_money / sentiment / mixed), match confidence (high / medium / low / not_applicable), liquidity status, risk flags, and a standard non-trade-recommendation disclaimer.
Parlay supports two connection paths depending on your client.
Parlay connects through Claude's Custom Connectors interface. The same flow works across all Claude surfaces.
https://mcp.parlay.run/mcpParlay's tools will appear in your tool list on the next message.
Note: Custom Connectors are available on Free, Pro, Max, Team, and Enterprise plans. Free Claude users are limited to one custom connector at a time. Do not configure Parlay through
claude_desktop_config.json— that file is for local stdio MCP servers only; Parlay is a remote MCP server.
These clients read MCP server configuration from a JSON file and don't run an OAuth dance themselves. Use a personal access token instead.
export PARLAY_TOKEN=parlay_pat_xxxxxxxxxxxxSecurity: Treat your token as a secret. Do not share, log, or commit it. Store it only in your local MCP client configuration.
Recommended: Use Cline's Remote Servers tab → "Add Server", entering https://mcp.parlay.run/mcp as the URL, selecting Streamable HTTP as the Transport Type, and adding Authorization: Bearer <your token> as a header.
For manual JSON editing or detailed troubleshooting, see llms-install.md. Do not copy .mcp.json verbatim into Cline — Cline uses a slightly different schema (covered in the install guide).
OpenClaw
git clone https://github.com/parlay-run/parlay-mcp.git
openclaw plugins install ./parlay-mcp
openclaw gateway restart
Cursor / Claude Code
Drop the parlay entry from .mcp.json (at the root of this repo) into your client's MCP server config.
{
"mcpServers": {
"parlay": {
"url": "https://mcp.parlay.run/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer ${PARLAY_TOKEN}"
}
}
}
}
compare_markets, scan_discrepancies). The sentiment_market_excluded risk flag is emitted whenever it is filtered out. Claude / ChatGPT / Gemini / OpenClaw
↕ (MCP over HTTPS)
┌────────────────────┐
│ mcp.parlay.run │
│ (this server) │
└────────┬───────────┘
│
┌────────────┴────────────┐
↓ ↓
Real-money data layer Sentiment data layer
Polymarket, Kalshi Manifold
+ secondary venues (isolated)
Parlay's real-money venue access is built on PMXT, an open-source unified SDK for prediction market venues. Parlay adds the AI intelligence layer on top: event comparability, settlement-risk metadata, sentiment isolation, and tool orchestration for MCP. PMXT trading methods are explicitly not exposed by Parlay — the hosted product is read-only by design.
This repository — including connection examples, metadata, and client configuration files for the hosted Parlay MCP service — is licensed under the MIT License. See LICENSE. The repository/service licensing split is also described in TERMS.md.
The hosted Parlay service at mcp.parlay.run, Parlay brand assets, APIs, data products, pricing, accounts, and service outputs are proprietary and governed by the Parlay Terms of Service: https://www.parlay.run/terms-of-service.