Prediction-market fee/KYC/withdrawal data, venue recommendations, and a paid x402 change feed.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Structured KYC, fee, and withdrawal data across 12 prediction-market venues, plus a change feed for when those terms move and a natural-language "which venue is best for X" recommendation tool. Built for AI agents that need to check execution friction before routing a trade β not for humans clicking around a dashboard.
Live now: https://prediction-friction-tracker-production.up.railway.app
GET /friction/venues, GET /friction/venue/{slug},
GET /friction/changes?since=<ISO8601>. Full OpenAPI spec at
/openapi.json, interactive docs at /docs, agent-readable summary at
/llms.txt./mcp/, exposing
list_venues, get_venue, recommend_venue, and get_changes_info as
tools. Point any MCP-compatible client at the /mcp/ URL directly./friction/changes (the time-sensitive change feed) is gated
by the x402 protocol: unpaid requests get a real
402 with a payment challenge; pay $0.05 USDC on Base mainnet and
retry to get the data. This is live, verified end-to-end with real money,
not a demo β see api.py for the CDP-facilitator wiring.| Endpoint | Cost | What it returns |
|---|---|---|
GET /friction/venues | Free | Current snapshot of every tracked venue. Optional ?confidence=verified|stale|unconfirmed filter. |
GET /friction/venue/{slug} | Free | One venue's current fee/KYC/withdrawal/API-access data, e.g. /friction/venue/kalshi. |
GET /friction/changes?since=<ISO8601> | $0.05 USDC (x402) | Append-only log of every detected change since a timestamp β the time-sensitive product. |
Every record carries a confidence field: verified (spot-checked or
high-confidence extraction), stale (source was unreachable, showing a
cached value), or unconfirmed (LLM extraction was ambiguous). Treat
unconfirmed as a lead to verify against the venue directly, not a fact to
trade on.
list_venues(confidence) β browse/filter the current snapshot.get_venue(slug) β one venue's full data.recommend_venue(query) β free-text "which venue is best for lowest fees
on high-frequency trading" / "I don't want to do KYC" / "API access
without a wallet" style questions, reasoned over the current dataset. Says
so explicitly rather than guessing when a query depends on data this
tracker doesn't have (liquidity, volume, spread, uptime).get_changes_info() β describes the paid change feed (URL, price) without
reimplementing it for free.| File | What it does |
|---|---|
schema.py | The data model β one VenueFriction record per venue, plus the VenueRecommendation response shape |
venues.py | The 12 tracked venues and their policy-page source URLs |
scrapers/base.py | Fetches and cleans raw policy-page text (requests + Playwright fallback for JS-rendered pages) |
extract.py | Sends raw page text to Claude, gets back a structured VenueFriction matching the schema |
recommend.py | Natural-language venue recommendation β reasons over the current dataset via Claude, structured-output constrained to real venue slugs |
reference_check.py | Cross-checks scraped fees against a third-party source (TradeBlock), flags divergences for human review |
storage.py | SQLite: current_state table (latest snapshot) + change_log table (append-only, the paid product) |
diff.py | Compares a fresh extraction to the stored one, writes a ChangeEvent for anything that moved |
run_pipeline.py | Orchestrates fetch β extract β diff β store, for all 12 venues |
api.py | FastAPI server β the HTTP endpoints above, x402 payment gating, MCP mount |
mcp_server.py | The MCP tool definitions, mounted into api.py at /mcp/ |
test_pipeline_logic.py, test_recommend_logic.py | Pure-logic tests, no API key needed |
Then in another terminal:
See CLAUDE.md for environment quirks, Claude API usage notes, and the
data-quality/confidence model in more depth.
Informational only β not financial or legal advice. Verify directly with the venue before acting on any figure returned here.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/prediction-market-friction-tracker)<a href="https://allmcps.com/mcp/prediction-market-friction-tracker"><img src="https://allmcps.com/api/badge/prediction-market-friction-tracker?style=directory" alt="Prediction Market Friction Tracker on AllMCPs" /></a>