kalshi_series

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

List Kalshi series (a series groups related events over time — e.g. “KXFED” series has one event per FOMC meeting). Useful to find the canonical handle for recurring questions.

Parameters

NameTypeRequiredDescription
categorystringnoPolitics | Economics | Climate | Sports | Science | World
limitnumberno1-1000 (default 200)

Example call

Arguments

{
  "category": "Economics"
}

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_series","arguments":{"category":"Economics"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('kalshi_series', {
  "category": "Economics"
});

Response shape

Always returns: count, series

FieldTypeDescription
countnumberNumber of series returned
seriesarrayList of series
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of series returned"
    },
    "series": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "ticker": {
            "type": "string",
            "description": "Series ticker"
          },
          "title": {
            "type": "string",
            "description": "Series title"
          },
          "category": {
            "type": "string",
            "description": "Series category"
          },
          "frequency": {
            "type": "string",
            "description": "Event frequency (e.g. weekly)"
          }
        }
      },
      "description": "List of series"
    }
  },
  "required": [
    "count",
    "series"
  ]
}

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.

Regenerated from source · build July 8, 2026