kalshi_game_stats
Pack: kalshi · Endpoint: https://gateway.pipeworx.io/kalshi/mcp
Live score and play-by-play for a Kalshi sports milestone, from Kalshi (Sportradar-fed).
Tool description as the model sees it
Live scoreboard and play-by-play for a sports game Kalshi has markets on, keyed by MILESTONE id (not event ticker) — Kalshi’s GET /live_data/milestone/{id} plus /game_stats. Returns the current state (score, period/inning, status, last play, winner once final) and the play list, newest-first, each with its description, clock and score at the time. Get the milestone id from kalshi_milestones (its related_event_tickers is the bridge back to tradeable markets). COVERAGE, stated plainly: Kalshi documents play-by-play for Pro/College Football, Pro/College Basketball, WNBA, Soccer, Pro Hockey and Pro Baseball, and it comes from Sportradar — a milestone outside that set, or one Sportradar does not cover, returns HTTP 200 with an EMPTY play list, which this reports as plays_available:false rather than passing off an empty array as a game with no plays (verified live 2026-09-16: a college football game returned {"pbp":{}}).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
milestone_id | string | yes | Kalshi milestone UUID, e.g. “ce57e3ef-6b6a-4680-a849-5965021aaac2”. Find one with kalshi_milestones(category:“Sports”). |
limit | number | no | Plays to return, newest first (default 25, max 500). plays_total reports how many existed. |
Example call
Arguments
{
"milestone_id": "ce57e3ef-6b6a-4680-a849-5965021aaac2",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/kalshi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"kalshi_game_stats","arguments":{"milestone_id":"ce57e3ef-6b6a-4680-a849-5965021aaac2","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('kalshi_game_stats', {
"milestone_id": "ce57e3ef-6b6a-4680-a849-5965021aaac2",
"limit": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"kalshi": {
"url": "https://gateway.pipeworx.io/kalshi/mcp"
}
}
}
See Getting Started for client-specific install steps.