An MCP server implementation for Kalshi prediction market endpoints
Project description
MCP Server Kalshi
An MCP server that gives Claude Code and other agent harnesses a first-class interface to Kalshi. It is built for end-to-end trading: browse markets, research them, read the exact settlement rules (including pulling the contract-terms PDFs), and execute trades — all through MCP tools.
Highlights
- Discovery —
list_markets,get_market,list_events,get_event,list_series,get_series. (Kalshi has no free-text search;list_marketsfilters are the search.) - Research —
get_market_orderbook,get_market_candlesticks,get_market_trades. - Deep rules —
get_market_rulesconsolidates a market'srules_primary/rules_secondary, early-close conditions, settlement sources, and series prohibitions;fetch_rules_pdfdownloads and extracts the text of the actual legal contract PDF so the agent can read it. - Exchange —
get_exchange_status,get_exchange_schedule(is the market open, and its hours). - Portfolio —
get_balance,get_positions,get_fills,get_settlements. - Trading —
create_order,cancel_order,amend_order,decrease_order, pluslist_orders/get_order.
Safety by default
- The server targets Kalshi's demo (sandbox) environment unless you explicitly set
KALSHI_ENV=prod. - Order-placing tools (
create_order,amend_order) requireconfirm=true. Without it they return a preview — a human-readable summary and the exact payload — and place nothing. - Credentials are optional: all market/rules tools work unauthenticated. Only portfolio and order tools need an API key + RSA private key.
Intuitive order model
Kalshi's V2 order API quotes everything from the YES leg (bid/ask in fixed-point dollars).
This server exposes the natural model instead — action (buy/sell) + side (yes/no) + a whole
cents limit price — and translates it (including the buy-NO ⇄ sell-YES price inversion).
Configuration
| Variable | Default | Purpose |
|---|---|---|
KALSHI_ENV |
demo |
demo (sandbox) or prod (real money). Derives the base URL. |
KALSHI_API_KEY |
(none) | Kalshi API key ID. Required only for authenticated tools. |
KALSHI_PRIVATE_KEY_PATH |
(none) | Path to your RSA private key .pem. Required for authenticated tools. |
BASE_URL |
(derived) | Optional explicit REST base override (must include /trade-api/v2). |
See .env-example. Get API credentials at
docs.kalshi.com/getting_started/api_keys
and a demo account via the
demo environment guide.
Claude Desktop (uvx)
"mcpServers": {
"kalshi": {
"command": "uvx",
"args": ["mcp-server-kalshi"],
"env": {
"KALSHI_ENV": "demo",
"KALSHI_API_KEY": "<YOUR KALSHI API KEY>",
"KALSHI_PRIVATE_KEY_PATH": "PATH TO YOUR RSA KEY FILE"
}
}
}
Claude Desktop (Docker)
"mcpServers": {
"kalshi": {
"command": "docker",
"args": ["run", "--rm", "-i",
"--mount", "type=bind,src=/Users/username,dst=/Users/username",
"-e", "KALSHI_ENV", "-e", "KALSHI_API_KEY", "-e", "KALSHI_PRIVATE_KEY_PATH",
"mcp-server-kalshi"],
"env": {
"KALSHI_ENV": "demo",
"KALSHI_API_KEY": "<YOUR KALSHI API KEY>",
"KALSHI_PRIVATE_KEY_PATH": "PATH TO YOUR RSA KEY FILE"
}
}
}
Local Development
- Create a
.envfile (see.env-example). - Install deps:
uv sync(add--extra devfor dev tools). Requires Python 3.10+. - Run:
uv run start. - Test:
uv run pytest.
MCP Inspector
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp-server-kalshi run start
Testing & code quality
uv sync --extra dev # install dev tools (ruff, mypy, pytest, ...)
uv run pytest # run the test suite
uv run pytest --cov # tests with a coverage report
uv run ruff check src tests # lint
uv run black src tests # format (add --check to verify only)
uv run mypy # type check
uv run pre-commit install # (once) run ruff + black on every commit
Tests are pure/offline — they exercise the order translation and confirm-gate, the HTTP client
(via an injected httpx.MockTransport), the MCP tool registry, config, and PDF extraction, all
without touching the live Kalshi API. CI (.github/workflows/ci.yml) runs ruff + black + mypy +
pytest across Python 3.10–3.13 on every push/PR, and releases are gated on that same suite.
Authentication
Requests are signed with RSA-PSS (MGF1-SHA256, max salt). Each authenticated request sends
KALSHI-ACCESS-KEY, KALSHI-ACCESS-TIMESTAMP, and KALSHI-ACCESS-SIGNATURE, where the signed
message is timestamp_ms + METHOD + path (path includes /trade-api/v2, excludes the query
string).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_server_kalshi-0.2.1.tar.gz.
File metadata
- Download URL: mcp_server_kalshi-0.2.1.tar.gz
- Upload date:
- Size: 26.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81e4204a678d917e0d8a0e9ff757b8b581c40995b831d60ebccc3f27f7ad339b
|
|
| MD5 |
5a6938433ddbe9f34325a6cc7f7e32fb
|
|
| BLAKE2b-256 |
20b6471e0a853f3f841f30388ebdec6c28f9fda453406b5a13dedd1ee5e98254
|
Provenance
The following attestation bundles were made for mcp_server_kalshi-0.2.1.tar.gz:
Publisher:
deploy.yml on 9crusher/mcp-server-kalshi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_server_kalshi-0.2.1.tar.gz -
Subject digest:
81e4204a678d917e0d8a0e9ff757b8b581c40995b831d60ebccc3f27f7ad339b - Sigstore transparency entry: 2128530614
- Sigstore integration time:
-
Permalink:
9crusher/mcp-server-kalshi@006a5f622c6051ec9e5dbacfb1a8095b6c35cfd8 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/9crusher
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@006a5f622c6051ec9e5dbacfb1a8095b6c35cfd8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file mcp_server_kalshi-0.2.1-py3-none-any.whl.
File metadata
- Download URL: mcp_server_kalshi-0.2.1-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85205f0f95c2a3f6ee50bd33c712937a910feada9d176c66996fc2b54e34fa12
|
|
| MD5 |
dd18aeffc2dc3a52cd1f2e9f3178f64e
|
|
| BLAKE2b-256 |
105f190c0746e97ec6343f8b8c094b00252732c7c51af7a4f17337d1c685d0cd
|
Provenance
The following attestation bundles were made for mcp_server_kalshi-0.2.1-py3-none-any.whl:
Publisher:
deploy.yml on 9crusher/mcp-server-kalshi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_server_kalshi-0.2.1-py3-none-any.whl -
Subject digest:
85205f0f95c2a3f6ee50bd33c712937a910feada9d176c66996fc2b54e34fa12 - Sigstore transparency entry: 2128530671
- Sigstore integration time:
-
Permalink:
9crusher/mcp-server-kalshi@006a5f622c6051ec9e5dbacfb1a8095b6c35cfd8 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/9crusher
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yml@006a5f622c6051ec9e5dbacfb1a8095b6c35cfd8 -
Trigger Event:
release
-
Statement type: