Parlay
OfficialParlay — Prediction Market MCP Server
The 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.
What it does
Tool | What it does |
| Cross-venue keyword search for live prediction markets and event contracts |
| Synthesized brief on a topic, combining real-money signals with community sentiment |
| Browse trending, high-volume, fast-moving, or high-disagreement markets |
| Compare the same event contract across venues side-by-side — probability, liquidity, settlement |
| Surface cross-venue price discrepancies as a discovery feed (informational, not trade recommendations) |
| 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.
Related MCP server: pmxt-mcp
Connect
Parlay supports two connection paths depending on your client.
Path A — Claude.ai (Desktop, web, mobile, Cowork)
Parlay connects through Claude's Custom Connectors interface. The same flow works across all Claude surfaces.
Open Claude settings (profile icon → Settings).
In the sidebar, select Connectors.
Scroll to the bottom and click Add custom connector.
Enter URL:
https://mcp.parlay.run/mcpClick Add, then Connect to complete OAuth authorization.
Parlay'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.
Path B — OpenClaw, Cursor, Cline, Claude Code, LobeHub, and other JSON-config clients
These clients read MCP server configuration from a JSON file and don't run an OAuth dance themselves. Use a personal access token instead.
Generate a token at https://parlay.run/settings/tokens
Export it:
export PARLAY_TOKEN=parlay_pat_xxxxxxxxxxxx
Security: Treat your token as a secret. Do not share, log, or commit it. Store it only in your local MCP client configuration.
Cline
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 restartCursor / 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}"
}
}
}
}Coverage
Real-money: Polymarket, Kalshi, Limitless
Sentiment (architecturally separated): Manifold
Catalog-only: Smarkets, Myriad, Metaculus, Probable, Baozi
Compliance posture
Read-only. No order placement, no position management, no fund custody.
No private credentials handled. Users never share venue API keys with Parlay.
Sentiment isolation. Manifold is mechanically excluded from real-money tools (
compare_markets,scan_discrepancies). Thesentiment_market_excludedrisk flag is emitted whenever it is filtered out.Settlement and liquidity risk flags. Markets with weak settlement criteria, missing volume data, or stale signals carry explicit risk flags in their metadata.
Standard disclaimers. Every tool response carries a non-trade-recommendation disclaimer in its metadata block.
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)Pricing
Free: 15 tool calls / month (search_markets, market_brief)
Pro: $29/mo, 150 calls / month
Team: coming soon, 1,500 calls / month
Built on
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.
Resources
Server endpoint: https://mcp.parlay.run/mcp
License
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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for Polymarket prediction markets, enabling search, market details, pricing, and bet analysis through 6 tools, with optional authenticated trading via API key.Last updated627MIT
- AlicenseCqualityBmaintenanceMCP server that provides a unified prediction market API for multiple venues like Polymarket and Kalshi, allowing AI agents to discover markets, fetch order books, and execute trades through a single interface.Last updated321,1488MIT
- Flicense-qualityDmaintenanceMCP server that exposes Polymarket prediction markets via CLI wrapper. Enables AI agents to discover markets, check prices, and place trades programmatically.Last updated
- Alicense-qualityDmaintenanceMCP server for querying and optionally trading across prediction markets (Polymarket, Kalshi, Limitless, Manifold) through a unified API.Last updated31MIT
Related MCP Connectors
market-spread MCP — cross-venue prediction-market landscape scanner.
Polymarket MCP — prediction-market data via Gamma + CLOB public APIs.
Polymarket + Hyperliquid + macro for AI agents. 38 tools, signal backtest, SSE streaming. Free tier.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/parlay-run/parlay-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server