
Kalshi MCP Server
- 1 repo stars
- Updated March 29, 2026
- joinQuantish/kalshi-mcp
Kalshi MCP is a self-hosted MCP server for Kalshi prediction market trading via DFlow on Solana.
About
The Kalshi MCP server lets developers and quant-minded indies expose Kalshi prediction market operations to Claude Code, Cursor, or other MCP clients through a self-hosted process you control. Described as trading via DFlow on Solana, it targets agents that research events, quote markets, or execute flows without you hand-rolling HTTP clients in every prompt. Version 0.3.0 lives in the joinQuantish/kalshi-mcp repository; you shoulder hosting, keys, and compliance for real-money prediction markets—this is integration plumbing, not investment advice. During build, register the server alongside your wallet and API credentials, then let the agent call structured tools instead of scraping the web UI. Complexity is intermediate because you need Solana/DFlow literacy and comfort with regulated market products. Skip it if you only need static research; use it when you are actively building an agentic trading or research stack on Kalshi rails.
- Self-hosted Kalshi MCP server (v0.3.0) from joinQuantish/kalshi-mcp
- Prediction market access via DFlow on Solana
- Finance-focused tooling for agent-driven market workflows
- GitHub-hosted server you run locally or on your own infra
Kalshi MCP Server by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add KalshiMCPServer -- npx -y joinQuantish/kalshi-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Last updated | March 29, 2026 |
| Repository | joinQuantish/kalshi-mcp ↗ |
What it does
Wire a self-hosted MCP server so your agent can interact with Kalshi prediction markets through DFlow on Solana.
Who is it for?
Best when you're automating Kalshi research or execution with your own infrastructure.
Skip if: Skip if you want managed brokerage with no self-hosting, or anyone avoiding prediction-market and crypto compliance risk.
What you get
After you host and register the server, your agent gets MCP tools aimed at Kalshi prediction market workflows on Solana.
- Running self-hosted Kalshi MCP server
- Agent-invokable tools for Kalshi market workflows via DFlow
By the numbers
- Server version 0.3.0 in MCP registry metadata
- Repository: github.com/joinQuantish/kalshi-mcp
- Described integration path: Kalshi via DFlow on Solana
README.md
@quantish/kalshi-server
⚠️ Notice: Quantish is winding down. The Quantish platform (quantish.live) is shutting down. This MCP server is self-hosted and will continue to work independently, but the Quantish team will no longer be maintaining or updating this project. If you're building in the prediction market space and need real-time data infrastructure, check out polynode.dev.
Self-hosted Kalshi MCP server for trading on Kalshi markets via DFlow on Solana.
Overview
This package provides an MCP (Model Context Protocol) server that enables AI agents to trade on Kalshi prediction markets through the DFlow protocol on Solana.
Features
- Full Kalshi Trading - Buy/sell on any Kalshi market
- Solana Wallet Management - Generate and manage Solana wallets
- DFlow Integration - Trade via DFlow's Solana infrastructure
- Jupiter Swaps - Swap SOL/USDC via Jupiter Aggregator
- MCP Compatible - Works with Claude, Quantish Agent, and any MCP client
- Self-Hostable - Run on Railway, Fly.io, or any Node.js host
Quick Start
git clone https://github.com/joinQuantish/kalshi-mcp
cd kalshi-mcp
npm install
Environment Variables
| Variable | Required | Description |
|---|---|---|
DATABASE_URL |
Yes | PostgreSQL connection string |
ENCRYPTION_KEY |
Yes | 64-character hex string for wallet encryption |
DFLOW_API_KEY |
No | DFlow API key (optional, for authenticated endpoints) |
JUPITER_API_KEY |
No | Jupiter API key from portal.jup.ag for swap tools |
SOLANA_RPC_URL |
No | Solana RPC endpoint (defaults to mainnet) |
ADMIN_API_KEY |
No | Admin API key for administrative endpoints |
PORT |
No | Server port (defaults to 3002) |
Obtaining API Keys
DFlow API Key:
DFlow access may require approval. Contact the DFlow team at dflow.net for API access.
Jupiter API Key:
Get a free API key from portal.jup.ag (Basic tier, 1 RPS). Required for swap functionality.
Using Quantish's public servers? Quantish's public servers are no longer available as the platform is winding down. You must self-host this MCP server to use it. Follow the setup instructions above to run your own instance.
Generate Encryption Key
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
Database Setup
Any PostgreSQL database works. Options:
| Provider | Notes |
|---|---|
| Railway | Add PostgreSQL service, copy DATABASE_URL from variables |
| Supabase | Free tier at supabase.com, copy connection string from Settings > Database |
| Neon | Serverless Postgres at neon.tech, free tier available |
| Local Docker | docker run -e POSTGRES_PASSWORD=pass -p 5432:5432 postgres |
Set your DATABASE_URL then run:
# Generate Prisma client
npm run db:generate
# Create tables
npm run db:push
Available Tools
Account Management
kalshi_signup- Create account with Solana walletkalshi_request_api_key- Request API key with access codekalshi_get_wallet_info- Get wallet address and typekalshi_get_wallet_status- Full wallet status including balanceskalshi_get_balances- Get SOL and USDC balanceskalshi_get_deposit_address- Get address for depositskalshi_export_private_key- Export wallet private keykalshi_import_private_key- Import existing Solana wallet
Market Discovery
kalshi_search_markets- Search Kalshi markets by keywordkalshi_get_market- Get market details by tickerkalshi_get_event- Get event with all nested marketskalshi_get_events- Browse events with filterskalshi_get_live_data- Get live pricing data
Trading
kalshi_get_quote- Get quote for prediction market tradekalshi_buy_yes- Buy YES outcome tokenskalshi_buy_no- Buy NO outcome tokenskalshi_sell_position- Sell outcome tokens back to USDCkalshi_get_positions- View current positionskalshi_get_orders- View order history
Swaps (SOL/USDC)
kalshi_get_swap_quote- Get Jupiter swap quotekalshi_execute_swap- Execute token swapkalshi_swap_sol_to_usdc- Swap SOL to USDCkalshi_swap_usdc_to_sol- Swap USDC to SOL
Transfers
kalshi_send_sol- Send SOL to another walletkalshi_send_usdc- Send USDC to another walletkalshi_send_token- Send any SPL token
Market Operations
kalshi_check_market_initialization- Check if market is tokenized on-chainkalshi_initialize_market- Initialize market on-chain (pays SOL fee)kalshi_check_redemption_status- Check if market is settledkalshi_get_market_by_mint- Look up market by token mint
Redemption
kalshi_get_redeemable_positions- Find positions ready to claimkalshi_redeem_winnings- Redeem specific winning positionkalshi_redeem_all_positions- Redeem all winning positions at once
API Key Management
kalshi_list_api_keys- List your API keyskalshi_create_additional_api_key- Create new API keykalshi_revoke_api_key- Revoke an API key
API Format
The server exposes a JSON-RPC 2.0 endpoint at /mcp:
curl -X POST https://your-server.com/mcp \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "kalshi_get_positions",
"arguments": {}
},
"id": 1
}'
Connecting to Quantish Agent
Configure the CLI to use your server:
export KALSHI_MCP_URL=https://your-server.com/mcp
export KALSHI_API_KEY=your-api-key
quantish
Or add to ~/.quantish/config.json:
{
"kalshiMcpUrl": "https://your-server.com/mcp",
"kalshiApiKey": "your-api-key"
}
Development
# Install dependencies
npm install
# Generate Prisma client
npm run db:generate
# Run migrations
npm run db:push
# Start development server
npm run dev
Resources
- NPM: @quantish/kalshi-server
- GitHub: joinQuantish/kalshi-mcp
- Quantish Agent: @quantish/agent
- DFlow Docs: pond.dflow.net
- Jupiter Portal: portal.jup.ag
License
This project is licensed under the PolyForm Noncommercial License 1.0.0.
Free for personal use, research, and non-commercial purposes. Commercial use requires explicit permission from Quantish Inc. Contact hello@quantish.live for commercial licensing.
Built by Quantish Inc.
Recommended MCP Servers
How it compares
Self-hosted finance MCP integration, not a curated skill pack or backtesting notebook.
FAQ
Who is Kalshi MCP for?
It is for developers building agent workflows around Kalshi prediction markets who will self-host the MCP server and manage Solana/DFlow setup.
When should I use Kalshi MCP?
Use it while building integrations when you need structured agent access to Kalshi via DFlow rather than ad-hoc API scripts.
How do I add Kalshi MCP to my agent?
Clone or deploy joinQuantish/kalshi-mcp, configure credentials and Solana/DFlow access per the repo, add the MCP server entry to Claude Code or Cursor, then restart the client.