MCP server for Kalshi prediction markets: native RSA-PSS auth, rate limiting, demo/prod safety.
Runs locally over stdio
This server isn't hosted β your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
uvx kalshi-mcp-server
MCP client config
{
"mcpServers": {
"kalshi-prediction-markets": {
"command": "uvx",
"args": [
"kalshi-mcp-server"
]
}
}
}Run
docker run -i --rm ghcr.io/cejor6/kalshi-mcp-server:0.1.8
MCP client config
{
"mcpServers": {
"kalshi-prediction-markets": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/cejor6/kalshi-mcp-server:0.1.8"
]
}
}
}