Crypto Market Data MCP Server
Provides live cryptocurrency market data from Binance (spot and perpetual futures), including price, order book, OHLCV candles, recent trades, funding rates, open interest, and more.
Provides live cryptocurrency market data from KuCoin (spot and perpetual futures), including price, order book, OHLCV candles, recent trades, funding rates, open interest, and more.
Provides live cryptocurrency market data from OKX (spot and perpetual futures), including price, order book, OHLCV candles, recent trades, funding rates, open interest, and more.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Crypto Market Data MCP ServerCompare funding rates for BTC across top exchanges"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Crypto Market Data MCP Server
A read-only Model Context Protocol server that gives any AI agent (Claude, Cursor, Cline, Windsurf…) live cryptocurrency market data across 100+ exchanges via CCXT. No API keys required — everything uses public endpoints.
Supported exchanges: bybit, binance, okx, hyperliquid, gate, kucoin (add more
CCXT ids in SUPPORTED_EXCHANGES).
Tools (13)
Discovery
Tool | What it does |
| Which exchanges are supported |
| Matrix of which exchange supports which data (no network) |
| Find the exact symbol format for a coin |
Market data
Tool | What it does |
| Last price + 24h stats |
| Top-of-book bids/asks |
| Recent OHLCV candles |
| Latest public trades |
Derivatives
Tool | What it does |
| Current perpetual funding rate |
| Historical funding rates |
| Funding rate across many exchanges + arb spread |
| Current open interest |
| Global long/short account ratio (Binance) |
| Recent public liquidations (limited support) |
compare_funding is the differentiator: it surfaces funding-rate arbitrage
opportunities (which venue pays the most vs least) in one concurrent call.
Related MCP server: MCP Crypto Market Data Server
Robustness
Built for production, not a demo:
Retries with exponential backoff on transient network errors (3 attempts).
Per-request + overall timeouts (10s / 25s) so a hung exchange can't stall a call.
Capability guards: never calls a method an exchange lacks — returns a clean error listing which exchanges do support it (see
get_capabilities).Structured errors (
{"error": {type, message, retryable, supported_exchanges}}) instead of crashes — agents always get a parseable response.TTL response cache (~660x faster on repeat calls; eases rate limits).
Input validation and clamped limits on every tool.
Guaranteed exchange cleanup; logs to stderr only (safe for stdio transport).
Run locally
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
# stdio transport (Claude Desktop, Cursor, Cline) — local, no auth:
python server.py
# OR streamable HTTP (hosted / remote) — API-key auth + rate limiting ON:
python server.py --http # binds :8000 (override with PORT=8799)Authentication & billing (HTTP mode)
The hosted HTTP transport is gated — this is what makes it billable. Local stdio stays open for single-user dev.
Clients send
Authorization: Bearer <api-key>.Each key maps to a
client_idand a tier; unknown/missing keys get401.Tiers (
auth.py→TIERS) set per-minute rate + monthly quota:Tier
req/min
monthly quota
free
10
1,000
pro
120
100,000
ultra
600
2,000,000
Over the limit → a clean
ToolError(Rate limit exceeded…/Monthly quota exceeded…), never a crash.
Configure keys (either source; file wins):
# inline
export CRYPTO_MCP_API_KEYS="sk_live_abc:acme:pro,sk_live_xyz:jane:free"
# or a file (see api_keys.example.json)
export CRYPTO_MCP_API_KEYS_FILE=./api_keys.jsonIf no keys are set in HTTP mode, a throwaway demo key (tier=pro) is generated and printed to stderr so you can test immediately.
Use with Claude Desktop
Copy claude_desktop_config.example.json into your Claude Desktop config
(~/Library/Application Support/Claude/claude_desktop_config.json on macOS,
%APPDATA%\Claude\claude_desktop_config.json on Windows), adjusting paths.
Symbols
Spot:
BTC/USDTPerpetual:
BTC/USDT:USDT
Roadmap
Add more exchanges to
SUPPORTED_EXCHANGES.More aggressive caching of hot symbols to cut latency.
Optional websocket streaming for live order book / trades.
Maintainers: hosting, deployment and registry-listing notes live in PUBLISHING.md.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eliasfire617/crypto-market-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server