kalshi_events
Pack: kalshi · Endpoint: https://gateway.pipeworx.io/kalshi/mcp
List/browse Kalshi events (event = a question with one-or-more child markets, e.g. “Fed funds rate after Oct 2026 meeting?” with 11 markets, one per rate bucket). Filter by status (open / settled), series_ticker (KXFED, KXBTC, KXCPI, etc.), or category. Use this as a discovery tool — to find what events Kalshi has open for a given topic family. For a specific event’s child markets see kalshi_event; for one specific market see kalshi_market.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | no | open | closed | settled (default open) |
series_ticker | string | no | e.g. “KXFED” |
limit | number | no | 1-200 (default 100) |
cursor | string | no | Pagination cursor |
Example call
Arguments
{
"status": "open",
"series_ticker": "KXFED"
}
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_events","arguments":{"status":"open","series_ticker":"KXFED"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('kalshi_events', {
"status": "open",
"series_ticker": "KXFED"
});
More examples
{
"category": "Economics",
"limit": 50
}
Response shape
Always returns: count, cursor, events
| Field | Type | Description |
|---|---|---|
count | number | Number of events returned |
cursor | string | null | Pagination cursor for next batch |
events | array | List of events |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of events returned"
},
"cursor": {
"type": [
"string",
"null"
],
"description": "Pagination cursor for next batch"
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"event_ticker": {
"type": [
"string",
"null"
],
"description": "Event ticker"
},
"series_ticker": {
"type": [
"string",
"null"
],
"description": "Series ticker"
},
"title": {
"type": [
"string",
"null"
],
"description": "Event title"
},
"sub_title": {
"type": [
"string",
"null"
],
"description": "Event subtitle"
},
"category": {
"type": [
"string",
"null"
],
"description": "Event category"
},
"mutually_exclusive": {
"type": [
"boolean",
"null"
],
"description": "Markets are mutually exclusive"
},
"strike_date": {
"type": [
"string",
"null"
],
"description": "Strike/resolution date"
},
"strike_period": {
"type": [
"string",
"null"
],
"description": "Strike period"
}
}
},
"description": "List of events"
}
},
"required": [
"count",
"cursor",
"events"
]
}
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.