pdata Prediction Markets MCP server
Live prediction-market odds, volume and movers across 8 platforms. Read-only, no auth.
Little public usage data yet
Reviews
Write oneNobody has reviewed pdata Prediction Markets yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
pdata Prediction Markets tools (14)
write = sends, deletes, buys or postsclosing_soonFreeUse when the user wants to see markets that will resolve within the next 36 hours. Returns markets sorted by close timestamp ascending. Filterable by `source=` and `categories=` (CSV). Excludes Limitless and price-derivative markets.
get_eventFreeUse when an agent needs the full detail of a single prediction-market event by its composite key (source + event_id). Returns the event with all of its child markets, latest probabilities, and metadata. The canonical URL `https://pdata.world/events/{source}/{event_id}` is stable for the lifetime of the underlying market. Events that closed more than 10 days ago are removed from the live tables; the same URL then returns a `kind: "tombstone"` object holding the title, close date and final outcome of each top market instead of the live `kind: "live"` object. Check `kind` before reading any other field.
get_event_similarFreeUse when an agent needs events similar to a given event — cross-platform equivalents and topically-related markets, precomputed nightly from title embeddings. Best-first; empty list (never an error) when no similarities are known yet.
get_marketFreeUse when an agent needs the full detail of a single market by its composite key (source + market_id). Returns the market with its parent event reference, current probability, volume, 24h delta, and historical chart points. Includes a `_meta.cite_as` field that the agent can drop directly into its reply.
get_summaryFreeUse when an agent needs platform-level context before drilling into individual markets: one row per platform (Polymarket, Kalshi, Manifold, Myriad, Limitless, Predict, Opinion, Gemini) carrying 24h notional volume, active event and market counts, and that platform's category mix. Takes no parameters and returns the whole picture in one small response, which makes it the cheapest way to answer 'how big is X relative to Y' or 'which platform covers this topic'. Volumes are in each platform's native units — Manifold reports play-money mana, not USD — so do not sum across platforms without saying so.
list_countriesFreeUse when an agent needs the list of country tags that markets have been tagged with. Returns the canonical country vocabulary with per-country market counts. Accepts the same filter params as `list_markets` (source, category, status, volume/probability ranges, search, …): the counts then reflect that filtered population, so this doubles as a facet endpoint. The country dimension itself is ignored when computing counts, so passing `country=` does not collapse the menu. Useful as the menu source for the `country=` filter on `list_events` / `list_markets` / `top_movers`.
list_eventsFreeUse when an agent wants to browse, filter, or search prediction-market events across all 8 platforms. Returns paginated events with their child markets, prices, and platform metadata. Filterable by source (polymarket/kalshi/manifold/myriad/limitless/predict/opinion/gemini), category, country, status (open/closed), and full-text search via `search`. Sortable by `volume_24hr`, `normalized_vol_24hr`, `liquidity`, `end_date`, or `closed_time` (prefix `-` for descending). Cap `page_size` ≤ 50 to keep responses small enough for LLM context windows.
list_marketsFreeUse when the user wants to browse, filter, or sort individual markets (not events). Returns paginated markets with their probability, volume, source, parent event ID, and 24h delta. Filterable by source, country, category, status, and full-text `search`. Sortable by `volume_24hr` or `probability`. Cap `page_size` ≤ 50 for chat-friendly responses.
list_news_moversFreeUse when the user wants to see the news-feed view: markets that exhibited a probability spike in the chosen lookback window, scored by `|Δprob_pp| × log10(1+USD-equivalent volume)`. Refreshed every 5 min. The `window=` param selects the lookback: 24 (default, ≥15pp), 12 (≥12pp), or 2 (≥2h, ≥10pp); `prob_change` is measured over that window. Includes a `prob_history` array (24h bucketed trajectory) per row regardless of window. Filterable by `source=` and `categories=` (CSV). Soft flags (`is_entertainment`/`is_microprediction`/`is_crypto`/`is_sports`/`is_weather`) default OFF; opt in with `include_*=true`.
map_heatFreeUse when you need a geographic snapshot of where prediction-market attention is concentrated. Returns per-country heat (capped news score, summed) for the current moment (`at=now`) or a past hour (`at=<ISO8601>`).
map_timelineFreeUse when you need the hourly total-heat time series that drives the /map playback scrubber. History accretes from launch (no backfill).
news_movers_by_categoryFreeUse when the user wants the news feed bucketed by category. Returns the same data shape as `list_news_movers` but pre-grouped into the canonical 14-category vocabulary, with cluster grouping inside each bucket. Useful for 'what's moving in politics?' style queries.
search_suggestFreeUse when an agent has a name or phrase and needs the `(source, id)` of the matching event or market before calling another tool. Resolves free text against events AND markets in one call, best-first, and reports `total_events` / `total_markets` so the agent can tell a precise hit from an ambiguous one. Every row carries `event_path`, the internal link to use for follow-up lookups. Prefer this over running `list_events?search=` and `list_markets?search=` separately when the goal is identification rather than a filtered listing. Note: `headline` carries literal `<b>` highlight markup — quote `title` instead, or strip the tags.
top_moversFreeUse when the user wants to see markets with the largest 24h probability swings. Returns the top N movers (default 5, max 20) ranked by absolute `prob_24h_change`. Filterable by source. Excludes Limitless and price-derivative markets by curation. Useful for 'what changed today?' style queries.
Public scan report
scanner v0.1.9 · 2026-09-20 · same rubric, same numbers if you re-run it
- –Code scanremote-only server, no package to scann/a
- Live reliabilityremote reachable in 2917ms17/20
- Tool poisoning14 tool descriptions checked10/15
- Auth qualityopen endpoint, read-only tools10/15
- Maintenancerepository not readable: repo not found3/15
- Maintainer identityverified namespace with website, no repo4/10
Findings (1)
- mediumMixed-script characters that can hide text
poison.homoglyphtool list_news_movers: …the chosen lookback window, scored by `|Δprob_pp| × log10(1+USD-equivalent volume)`. …
Install directly
claude mcp add --transport http mcp https://api.pdata.world/mcp
pdata Prediction Markets: common questions
- Is pdata Prediction Markets MCP server safe?
- With care: it is graded C, so read the findings first (59/100). Read the pdata Prediction Markets safety report
- How do I install pdata Prediction Markets?
- It runs remotely at api.pdata.world. Add it to Claude Code, Claude Desktop or Cursor with the snippets above, or call it through the mcp.market gateway without installing anything.
- Does pdata Prediction Markets need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is pdata Prediction Markets maintained?
- The latest release is v2.1.0.
- Is pdata Prediction Markets up?
- 100% of our last 7 checks got an answer. We check remote servers about four times a day.
- What can I use instead of pdata Prediction Markets?
- Servers from other publishers that do the same job: pinnodds — Pinnacle odds MCP server, SpinHire iGaming Jobs MCP server and MCP Server. Compare all pdata Prediction Markets alternatives.
Alternatives to pdata Prediction Markets
Same job from other publishers: the closest match first, then the best rated.
pinnodds — Pinnacle oddsPinnacle live and prematch odds, odds drops and account usage. Auth: pinnodds API key as Bearer.not reviewedNewB- SpinHire iGaming JobsLive iGaming jobs — casino, betting, studios, affiliates — plus market data. No auth.not reviewedNewC
- MCP Server天启至数 ApocData - MCP Server for A-share market data (46 free, no-auth endpoints)not reviewedGrowingA
- WebanalyzerFree website analyzer: score any public URL 0-100 across 8 quality dimensions. No auth.not reviewedGrowingA
spintax.net MCP serverWrite, validate, render and analyze spintax templates. Backed by @spintax/core. No auth.not reviewedGrowingA