Polymarket
liveMarketsFinancePolymarket prediction-market data — current Yes/No prices, volume, resolution criteria, price history. Public Gamma + CLOB APIs, no auth.
Tools
polymarket_searchPolymarket prediction markets matching a keyword, each with its live Yes/No price.
No parameters required.
Try it
polymarket_top_marketsThe highest-volume open Polymarket markets right now, over a 24-hour to all-time window.
No parameters required.
Try it
polymarket_marketOne Polymarket market in full, including the exact wording that decides how it resolves.
No parameters required.
Try it
polymarket_eventA Polymarket event with every child market, for questions that have more than two outcomes.
No parameters required.
Try it
polymarket_price_historyHow a Polymarket market's Yes-side probability moved over time, as a timestamped series.
No parameters required.
Try it
polymarket_orderbookThe live bid and ask ladder for one Polymarket market, with the size available at each price.
No parameters required.
Try it
polymarket_event_booksLive order books for every tradable market in a single Polymarket event, in one request.
No parameters required.
Try it
polymarket_tradesTrades recently executed on a Polymarket market — side, outcome, size and price, newest first.
No parameters required.
Try it
polymarket_holdersThe largest Yes and No position holders in a Polymarket market, with their share counts.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/polymarket/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/polymarket/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"polymarket_search","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("polymarket_search", {});// Or ask in plain English:
const answer = await px.ask("polymarket prediction-market data — current yes/no prices, volume, resolution criteria, price history");