Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.

MCP Server

The Adjacent MCP server exposes prediction-market data to AI agents over the Model Context Protocol. It is a thin agent view-layer over the REST API: four task-shaped tools instead of one tool per endpoint, with chainable ids so agents can discover an entity and then fetch detail or price history without guessing id formats.

Endpoint

https://mcp.adjacent.markets/mcp
Public (no key) traffic uses the 15-minute-delayed snapshot tier. For realtime data, append your Adjacent API key as a query parameter (same key you use for the authenticated REST API):
https://mcp.adjacent.markets/mcp?apiKey=YOUR_KEY
Generate and manage keys in account settings on adjacent.markets.

Connect an agent

Most agent hosts that support remote MCP take a single URL. Examples:
Cursor / Claude (remote Streamable HTTP)
{ "mcpServers": { "adjacent": { "url": "https://mcp.adjacent.markets/mcp" } } }
With an API key (realtime tier)
{ "mcpServers": { "adjacent": { "url": "https://mcp.adjacent.markets/mcp?apiKey=YOUR_KEY" } } }
Exact config file paths vary by host; use whatever “remote MCP” / “Streamable HTTP” option your tool documents and paste one of the URLs above.

Tools

ToolWhen to use it
listBrowse what’s tradable now (events by default), or list markets, indices, rates, or news, with search, sort, and pagination
findDiscover an entity by topic or name when you don’t have an id yet. Optional type narrows to one kind (index, rate, event, market, news)
getFull detail for one entity by id. Indices include constituents in a single call
pricePrice history for an index, rate, market, or event. Pass a human timeframe (24h, 7d, 30d, 90d); responses are a compact summary by default (raw: true for the full series). Events return per-child-market summaries
Ids from list / find chain into get / price: markets use <platform>:<raw> (for example kalshi:KXPRESPARTY-28-R); indices and rates use slugs such as red / pres.

See also