Server data from the Official MCP Registry
MCP server for Kalshi prediction markets: native RSA-PSS auth, rate limiting, demo/prod safety.
About
MCP server for Kalshi prediction markets: native RSA-PSS auth, rate limiting, demo/prod safety.
Security Report
A well-engineered Kalshi trading MCP server with strong authentication (RSA-PSS), comprehensive safety controls (order caps, two-step confirmation, environment separation), and clean code structure. Permissions appropriately match purpose for a trading bot. Minor code quality observations noted but do not materially affect security posture for a developer tool in this category. Supply chain analysis found 11 known vulnerabilities in dependencies (1 critical, 5 high severity). Package verification found 1 issue.
6 files analyzed Β· 15 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
What You'll Need
Set these up before or after installing:
Environment variable: KALSHI_API_KEY_ID
Environment variable: KALSHI_PRIVATE_KEY_PATH
Environment variable: KALSHI_PRIVATE_KEY_PEM
Environment variable: KALSHI_ENV
Environment variable: KALSHI_ALLOW_PROD
Environment variable: KALSHI_TRADING_ENABLED
How to Install
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-cejor6-kalshi-mcp-server": {
"env": {
"KALSHI_ENV": "your-kalshi-env-here",
"KALSHI_ALLOW_PROD": "your-kalshi-allow-prod-here",
"KALSHI_API_KEY_ID": "your-kalshi-api-key-id-here",
"KALSHI_PRIVATE_KEY_PEM": "your-kalshi-private-key-pem-here",
"KALSHI_TRADING_ENABLED": "your-kalshi-trading-enabled-here",
"KALSHI_PRIVATE_KEY_PATH": "your-kalshi-private-key-path-here"
},
"args": [
"kalshi-mcp-server"
],
"command": "uvx"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
kalshi-mcp-server
π¦ PyPI Β Β·Β ποΈ MCP Registry Β Β·Β π³ Container image Β Β·Β π Deploy guide
A Model Context Protocol server for Kalshi prediction markets. Native RSA-PSS auth, async token-bucket rate limiting, two-step prepare/confirm order flow with safety caps, optional bundled OAuth proxy for remote-MCP deployments, 26 tools + 4 resources across REST and WebSocket. MIT, designed to be forked.
Works with any MCP client β locally via stdio (Claude Desktop, Claude Code, Cursor, Zed, Continue, Cline, Goose, etc.) or remotely as a self-hosted HTTP server (claude.ai custom connectors today, any OAuth-capable MCP client in the future).
β οΈ This software lets an LLM place trades. Read DISCLAIMER.md before deploying. Trading prediction markets involves substantial risk of loss. AI agents make mistakes β sometimes confidently. The authors are not liable for any losses. Test in demo (
KALSHI_ENV=demo,KALSHI_TRADING_ENABLED=0) until you understand the failure modes.
Status β alpha. Auth (REST + WS), rate limiting, safety controls, 26 tools across REST + live channels, and 4 resources are in place. A long-lived multiplexed WebSocket session and
kalshi://markets/{ticker}/orderbooklive resource are planned for v0.2.
Quickstart (30 seconds)
Read-only against Kalshi's demo environment β no real money, no trading flag. This is the safe way to try it.
pipx install kalshi-mcp-server # or: pip install kalshi-mcp-server
Point any MCP client at it (this is the Claude Desktop / Claude Code shape β see the full client matrix for others):
{
"mcpServers": {
"kalshi": {
"command": "kalshi-mcp",
"args": ["--env-file", "/Users/you/.kalshi/.env"]
}
}
}
Minimal ~/.kalshi/.env (get a demo key at
demo.kalshi.co β it's shown once):
KALSHI_API_KEY_ID=<your-demo-key-id>
KALSHI_PRIVATE_KEY_PATH=/absolute/path/to/demo_private_key.pem
KALSHI_ENV=demo
Restart the client and ask it to run a Kalshi tool. Enabling prod and
trading is a deliberate opt-in β a few more flags (KALSHI_ALLOW_PROD=1,
KALSHI_TRADING_ENABLED=1) β see Configure and the
safety model.
What a call looks like
Ask the agent for tradeable markets and kalshi_find_liquid_markets returns a
volume-ranked, combo-excluded shortlist (trimmed, illustrative):
{
"scanned": 300,
"markets": [
{
"ticker": "KXNBAGAME-25JUL12BOSLAL-BOS",
"title": "Will the Celtics beat the Lakers?",
"yes_bid_dollars": 0.58, "yes_ask_dollars": 0.60,
"volume_24h_fp": 41230, "open_interest_fp": 88400,
"status": "active", "close_time": "2026-07-12T23:30:00Z"
},
{
"ticker": "KXHIGHNY-26JUL12-B90.5",
"title": "Will NYC's high temp exceed 90.5Β°F today?",
"yes_bid_dollars": 0.31, "yes_ask_dollars": 0.34,
"volume_24h_fp": 12760, "open_interest_fp": 23110,
"status": "active", "close_time": "2026-07-13T04:00:00Z"
}
]
}
Placing a trade is a deliberate two step β kalshi_prepare_order runs the
local safety checks and hands back a confirmation_id; nothing reaches Kalshi
until you call kalshi_confirm_order with that token. An LLM can't place an
order in a single call.
Why this server
Most existing Kalshi MCPs are thin wrappers around a handful of REST endpoints. This one aims to be:
- Native Kalshi. Real RSA-PSS signer that handles the gotchas (path-without-query-string, ms timestamps, separate demo/prod keys).
- Rate-limit aware. Client-side token bucket mirrors Kalshi's 2026 read/write budget model, so the server can't spam the API into a 429.
- Safe by default. Refuses to start against prod without an explicit opt-in flag. Refuses to write without a separate trading-enabled flag. Order-time controls (size cap, daily cap, cash reserve) are all operator-configurable.
- Hosted-deploy friendly. Accepts the private key as either a file path OR an env var with inline PEM, so it works on platforms without filesystem mounts.
- Fork-able. MIT, no personal data, CI/CD set up so PR contributions
flow through
mainwithout ever triggering a production deploy β only tagged releases (v*) do. Your fork's deployment stays decoupled from this repo's, and your fork's contributors can't affect what you run.
Install
From PyPI (recommended)
Published as kalshi-mcp-server.
pipx installs the kalshi-mcp entrypoint into its own
isolated environment:
pipx install kalshi-mcp-server # or: pip install kalshi-mcp-server
From source
git clone https://github.com/cejor6/kalshi-mcp-server.git
cd kalshi-mcp-server
uv sync
Docker
Multi-arch (amd64 + arm64) images are published to GHCR on every tagged
release, tagged :latest and :vX.Y.Z:
docker pull ghcr.io/cejor6/kalshi-mcp-server:latest
See DEPLOY.md for hosted deployment.
Configure
-
Generate a Kalshi API key at https://kalshi.com/account/profile (or the demo equivalent at https://demo.kalshi.co/account/profile). Save the private key β it is shown ONCE.
-
Put your secrets in one
.envfile. A good location for the MCP-client use case is~/.kalshi/.env(outside any repo). For local dev, the repo's own.env(gitignored) works too.
cp .env.example ~/.kalshi/.env
# edit ~/.kalshi/.env
- At minimum, set:
KALSHI_API_KEY_ID=<your-key-id>
KALSHI_PRIVATE_KEY_PATH=/absolute/path/to/your_kalshi_private_key.pem
KALSHI_ENV=demo
For prod, also set:
KALSHI_ENV=prod
KALSHI_ALLOW_PROD=1
KALSHI_TRADING_ENABLED=1 # only if you want writes
How env vars are resolved
On startup, the server resolves config in this order (highest wins):
- Values already in the process environment β set in the MCP client
config's
env:block, or exported in your shell. .envfile β loaded from--env-file PATHif you pass that flag, otherwise from./.envin the current working directory if it exists. Variables already in the environment from step 1 are not overridden.
So you can put secrets either inline in the MCP config (env:) or in a
file the config points at (--env-file). You don't need to do both.
Use with an MCP client (stdio)
Every MCP stdio client uses the same shape: a command to launch the
server, optional args, optional env. The differences are just the
file/UI where you put the config.
Three install patterns work β pick whichever fits your environment.
Pattern A β pipx install (cleanest, recommended)
Installs kalshi-mcp to a globally-available, isolated environment.
pipx is the modern Python tool for this:
pipx install kalshi-mcp-server
MCP client config then collapses to:
{
"mcpServers": {
"kalshi": {
"command": "kalshi-mcp",
"args": ["--env-file", "/Users/you/.kalshi/.env"]
}
}
}
Update with pipx upgrade kalshi-mcp-server when you want the latest.
Pattern B β uv run against a local clone
Best if you've cloned the repo and have uv
installed. Point the MCP client at uv with --directory:
{
"mcpServers": {
"kalshi": {
"command": "uv",
"args": [
"run",
"--directory", "/absolute/path/to/kalshi-mcp-server",
"kalshi-mcp",
"--env-file", "/Users/you/.kalshi/.env"
]
}
}
}
uv run activates the project's venv automatically. Update with
git pull + restart the MCP client. Useful for development /
hacking on the server itself.
Pattern C β Docker against the public image
Best for users without Python installed, or who prefer container isolation:
{
"mcpServers": {
"kalshi": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-v", "/Users/you/.kalshi/demo.pem:/secrets/demo.pem:ro",
"-e", "KALSHI_API_KEY_ID=<your-key-id>",
"-e", "KALSHI_PRIVATE_KEY_PATH=/secrets/demo.pem",
"-e", "KALSHI_ENV=demo",
"ghcr.io/cejor6/kalshi-mcp-server:latest"
]
}
}
}
The -v mount bind-mounts your PEM file read-only into the
container; KALSHI_PRIVATE_KEY_PATH points at that path. Secrets
live in the JSON config β fine for a single-user machine.
Where to put this config:
| Client | Config location |
|---|---|
| Claude Desktop | claude_desktop_config.json (Settings β Developer) |
| Claude Code | project .mcp.json or ~/.claude/mcp.json |
| Cursor | Settings β MCP β Add new MCP Server (UI fills the same JSON) |
| Zed | ~/.config/zed/settings.json under context_servers |
| Continue | ~/.continue/config.json under experimental.modelContextProtocolServers |
| Cline | Cline settings β MCP Servers β Edit JSON |
| Goose | ~/.config/goose/config.yaml under extensions |
If you'd rather inline secrets in the MCP config (acceptable for local dev where the config file is on your own machine):
{
"mcpServers": {
"kalshi": {
"command": "kalshi-mcp",
"env": {
"KALSHI_API_KEY_ID": "your-key-id",
"KALSHI_PRIVATE_KEY_PATH": "/path/to/your/private_key.pem",
"KALSHI_ENV": "demo"
}
}
}
}
Why not just
.envin the project dir? MCP clients spawn the server as a subprocess from their own working directory (typically your home dir on macOS/Linux, the client's install dir on Windows), so a.envsitting in this repo wouldn't get found. Hence--env-fileto point at it explicitly. Running the server directly from the project dir (no client) still works without flags β the CLI auto-loads./.envwhen launched there.
Use as a remote MCP service
For clients that don't speak local stdio β currently the main one being claude.ai's custom connector form, which only supports OAuth-protected HTTP β host the server somewhere reachable and point the client at it. The OAuth proxy is bundled with the server; you just need to configure it.
See DEPLOY.md for an end-to-end walkthrough using Render + GitHub OAuth + Upstash Redis. Other image-deploy hosts (Fly.io, Cloud Run, ECS, Railway) work the same way β Render is just the worked example.
Tools
| Group | Tools |
|---|---|
| Exchange / account | kalshi_get_exchange_status, kalshi_get_exchange_schedule, kalshi_get_api_limits, kalshi_get_environment, kalshi_set_safety_limits |
| Discovery | kalshi_get_markets, kalshi_find_liquid_markets, kalshi_get_market, kalshi_get_event, kalshi_get_events, kalshi_get_series, kalshi_get_series_list, kalshi_get_series_summary, kalshi_get_milestones, kalshi_get_trades |
| Market data | kalshi_get_orderbook, kalshi_get_orderbooks, kalshi_get_market_candlesticks, kalshi_get_event_candlesticks, kalshi_get_batch_candlesticks, kalshi_get_event_forecast_history, kalshi_get_market_trades |
| Combos / parlays | kalshi_get_combo_collections, kalshi_get_combo_collection, kalshi_get_combo_events, kalshi_get_combo_legs, kalshi_create_combo_market (write β off by default, see below) |
| Portfolio | kalshi_get_balance, kalshi_get_positions, kalshi_get_orders, kalshi_get_fills, kalshi_get_settlements |
| Orders (write) | kalshi_prepare_order, kalshi_confirm_order, kalshi_cancel_order, kalshi_decrease_order, kalshi_get_order |
| Live (WebSocket) | kalshi_get_live_orderbook, kalshi_sample_trades |
| External data (read-only) | kalshi_fetch_external_data β host-allowlisted, GET-only, https-only fetch of public data feeds (Polymarket gamma/clob, NWS api.weather.gov, Open-Meteo incl. ensemble, Tennis Abstract, Deribit public). No credentials attached (trust_env=False), redirects not followed, body size- and wall-clock-capped and returned wrapped in UNTRUSTED-EXTERNAL-DATA delimiters. Exists so clients whose own egress is restricted (e.g. claude.ai cloud routines) can reach the public feeds their read-only research needs; the allowlist is enforced at runtime, additions are a code change, and the boundary rationale lives in AGENTS.md. |
Write tools require KALSHI_TRADING_ENABLED=1. kalshi_prepare_order runs
local safety checks and returns a confirmation_id; nothing is sent to
Kalshi until you call kalshi_confirm_order with that token. Cancel and
decrease bypass the trading-enabled flag β they only reduce exposure.
Listing markets for an LLM: kalshi_get_markets / kalshi_get_market
accept minimal=true to project each market down to a small whitelist of
triage fields (ticker, prices, sizes, volume, status, close time). Prefer
this over compact=true for scanning β compact is a blacklist and barely
shrinks multivariate (KXMVEβ¦) combo markets, whose bulk lives in
custom_strike / mve_selected_legs / long sub-titles. Pass a custom
fields="ticker,yes_bid_dollars,β¦" to override the default whitelist.
View precedence is fields > minimal > compact > full. kalshi_get_event
/ kalshi_get_events accept the same minimal / fields for their nested
markets (the event objects themselves only have the compact view).
Don't gate on liquidity_dollars: Kalshi currently returns it as
0.0000 on every market, even deep books β measure liquidity from the
orderbook (best bid/ask + resting size) plus volume_24h_fp /
open_interest_fp. It is stripped from compact and minimal views.
Finding tradeable markets: the default open listing is dominated by
multivariate (KXMVEβ¦) combo markets with empty/one-sided books. Pass
mve_filter="exclude" to kalshi_get_markets to drop them server-side, or
use kalshi_find_liquid_markets β it excludes combos, ranks by 24h volume,
and returns a short minimal-projection shortlist. (Kalshi has no server-side
sort, so the helper's ranking is over a bounded scan window, reported as
scanned in the result.) Pass scan_all=true to sweep the FULL open listing
before ranking β that turns the shortlist into a genuine exchange-wide top-N
rather than the top of an arbitrary slice. The sweep is bounded by internal
request / wall-clock / market caps, and the result reports complete plus
stopped_by so a partial scan is never mistaken for an exhaustive one.
Scanning wide without burning context: three tools exist for scan/anomaly workloads that would otherwise cost one call per market.
kalshi_get_orderbooks(tickers=[β¦], depth=5)fetches up to 25 books in one request, with per-ticker error isolation β a bad or event-level ticker becomes anerrorentry for that ticker instead of failing the batch. Kalshi's batch endpoint has nodepthparameter, so depth is applied server-side by this MCP; it keeps the best levels (Kalshi returns levels ascending by price and both sides are bids).kalshi_get_series_summary()rolls the whole listing up to one row per series (market count, event count, 24h volume, tightest spread, soonest close). Cheap in context, not free in reads β it's the daily "new supply census" that spots a new event class listing without paging thousands of markets. Noteseries_tickeris derived from the ticker prefix: Kalshi does not return it on market objects.kalshi_get_batch_candlesticks(market_tickers=[β¦])fetches OHLC bars for up to 100 markets in one request β a momentum lens over a whole shortlist. Its budget shape differs from the single-market tool: Kalshi returns at most 10,000 candles total across all tickers, so window cost multiplies by ticker count. Validated locally, with a message naming how many markets the requested window actually affords.
Combos / parlays. The multivariate surface lives in its own module:
kalshi_get_combo_collections/kalshi_get_combo_collectionβ the parlay families on offer and the rules each imposes (size_min/size_maxlegs,is_all_yes, the eligible-event universe).kalshi_get_combo_eventsβ combos already listed against a collection, i.e. live parlay supply. Defaultsminimal=Truefor nested markets, because combo markets are the largest objects Kalshi returns.kalshi_get_combo_legs(ticker)resolves aKXMVEβ¦combo into its underlying legs (market ticker, side, title) frommve_selected_legsβ strictly better than splitting the combo's title string on commas, which drops the leg tickers and mis-splits on titles that contain a comma. If Kalshi published no leg breakdown, it returns a structuredresolvable: falserather than guessing. Thelegsit returns feed straight back into the create tool, so you can round-trip an existing combo and vary one leg.kalshi_create_combo_marketβ write. Materializes a combo market ticker for a chosen leg set. It places no order and commits no money, so it has its own gate rather than riding onKALSHI_TRADING_ENABLED: setMCP_ALLOW_COMBO_CREATION=1to register it at all (default off, and when off the tool isn't advertised to the model). Kalshi allows 5000 creations per week per account, so the server also enforcesMCP_MAX_COMBO_CREATIONS_PER_DAY(default 100, in-process, resets at UTC midnight and on restart) to stop a retry loop burning the weekly quota. Before the POST it pre-flights your leg set against the collection's ownsize_min/size_max/is_all_yesrules, which Kalshi otherwise rejects with an opaque 400; that check fails open if the collection can't be read.
Two env vars come with the combo write surface β add them to your .env:
MCP_ALLOW_COMBO_CREATION=0 # 1 registers kalshi_create_combo_market
MCP_MAX_COMBO_CREATIONS_PER_DAY=100
Event ticker vs market ticker: a market ticker carries an outcome
suffix (β¦PITHOU-HOU); an event ticker (β¦PITHOU) does not. Passing an
event ticker to kalshi_get_market / kalshi_get_orderbook / kalshi_get_markets
used to fail silently (404, or an empty book/list read as "no liquidity").
These tools now detect that case and raise an actionable hint naming the
real market tickers instead.
Resources
| URI | Description |
|---|---|
kalshi://environment | Current env, safety limits in force + their env ceilings, rate-limit headroom (no API call) |
kalshi://balance | Cash + buying power |
kalshi://positions | Open positions (unsettled) |
kalshi://orders | Resting orders (open / partially filled) |
A WebSocket-backed live-orderbook resource (kalshi://markets/{ticker}/orderbook)
is planned β for now, use the kalshi_get_live_orderbook tool which
opens a transient WS, samples the book, and returns the current
snapshot + delta arrival rate.
Safety model
This server is deliberately conservative for the same reason your bank's ATM is β small mistakes shouldn't cost large amounts.
KALSHI_ENV=prodrequiresKALSHI_ALLOW_PROD=1. The server refuses to start without both.- All write tools require
KALSHI_TRADING_ENABLED=1. The default is read-only. - Per-order caps (
MCP_MAX_ORDER_SIZE_USD,MCP_DAILY_LIMIT_USD,MCP_MAX_CONTRACTS_PER_ORDER,MCP_CASH_RESERVE_USD) are checked before the request reaches Kalshi. - Tighten limits at runtime, no redeploy. Those env vars are the hard
ceiling. The
kalshi_set_safety_limitstool can tighten any limit on a running server (e.g. a fast clamp-down) but can never loosen one past its env ceiling β the three caps only go down, the cash reserve only goes up. Raising a ceiling still requires changing the env var and redeploying. The limits in force vs. their ceilings show up inkalshi_get_environmentandkalshi://environment. SetMCP_REDIS_URLto make runtime changes survive a restart (otherwise they reset to the env ceilings on reboot).
See AGENTS.md for the full design.
Deployment
Use it locally as a stdio server with any MCP client, or run it as a remote HTTP MCP behind an OAuth proxy.
For remote deployment, the recommended setup is image-deploy: a
production host (Render, Fly.io, Cloud Run, ECS, anything that supports
pulling container images) pulls the image that's built and pushed when
you tag a release (git tag v0.1.0). This decouples deployments from
PR merges β PRs to main only ever run tests, never push a new image β
so a malicious or careless PR cannot affect what's running in your
container.
See DEPLOY.md for the rationale and a worked example with Render.
Contributing
PRs welcome. Read CONTRIBUTING.md first β there are a few rules around auth changes, secret hygiene, and test conventions.
License
MIT. See also DISCLAIMER.md β the MIT license disclaims warranty; DISCLAIMER.md spells out the trading- and AI-specific risks you're accepting by using this software.
Acknowledgments
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Git
Freeby Modelcontextprotocol Β· Developer Tools
Read, search, and manipulate Git repositories programmatically
Fetch
Freeby Modelcontextprotocol Β· Developer Tools
Web content fetching and conversion for efficient LLM usage
Toleno
Freeby Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace Β· Developer Tools
Create, build, and publish Python MCP servers to PyPI β conversationally.
MCP Marketplace
Freeby mcp-marketplace Β· Developer Tools
Search and install MCP servers from inside your AI client.
MarkItDown
Freeby Microsoft Β· Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
