get_market

Pack: predictit · Endpoint: https://gateway.pipeworx.io/predictit/mcp

Get one PredictIt market by id with ALL of its contracts. Contract prices are implied probabilities (0–100%). Keyless. Example id: 7589 (2026 Republican House seats). Use list_markets or search_markets to find ids.

Parameters

NameTypeRequiredDescription
idnumberyesA PredictIt market id, e.g. 7589 or 8155 (Senate control 2026).

Example call

Arguments

{
  "id": 7589
}

curl

curl -X POST https://gateway.pipeworx.io/predictit/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_market","arguments":{"id":7589}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_market', {
  "id": 7589
});

More examples

{
  "id": 8155
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "predictit": {
      "url": "https://gateway.pipeworx.io/predictit/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026