Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

eliasfire617/crypto-market-data-mcp MCP server](https://glama.ai/mcp/servers/eliasfire617/crypto-market-data-mcp/badges/score.svg)](https://glama.ai/mcp/servers/eliasfire617/crypto-market-data-mcp) 🐍 ☁️ - Live crypto market data β€” price, funding rates,...

README.md

Crypto Market Data MCP Server

![MCPize](https://mcpize.com/mcp/crypto-market-data)

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).

Connect via MCPize

Use this MCP server instantly with no local installation:

npx -y mcpize connect @eliasfire617/crypto-market-data --client claude

Or connect at: https://mcpize.com/mcp/crypto-market-data

Tools (13)

Discovery | Tool | What it does | |------|--------------| | list_exchanges | Which exchanges are supported | | get_capabilities | Matrix of which exchange supports which data (no network) | | search_symbols | Find the exact symbol format for a coin |

Market data | Tool | What it does | |------|--------------| | get_price | Last price + 24h stats | | get_order_book | Top-of-book bids/asks | | get_ohlcv | Recent OHLCV candles | | get_recent_trades | Latest public trades |

Derivatives | Tool | What it does | |------|--------------| | get_funding_rate | Current perpetual funding rate | | get_funding_rate_history | Historical funding rates | | compare_funding | Funding rate across many exchanges + arb spread | | get_open_interest | Current open interest | | get_long_short_ratio | Global long/short account ratio (Binance) | | get_liquidations | 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. Rates are annualized (apr_pct) before comparing β€” venues fund at different cadences (Hyperliquid hourly vs 8h elsewhere), so raw rates aren't comparable.

Want the analysis, not just the data? The companion server Crypto Derivatives Intelligence builds on this data: funding-carry opportunities netted of fees (breakeven days, executable depth), OI-price divergence, liquidation zones, positioning extremes, and market-regime classification β€” one tool call each.

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_id and a tier; unknown/missing keys get 401.
  • 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.json

If no keys are set in HTTP mode, a throwaway demo key (tier=pro) is generated and printed to stderr so you can test immediately.

Behind a gateway (e.g. MCPize)

If you deploy behind a platform that already authenticates and rate-limits subscribers, set CRYPTO_MCP_DISABLE_AUTH=1. The server then trusts the gateway and skips its own auth + rate limiting β€” no double authentication, no double throttling. Only do this when the container is reachable solely through that gateway.

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/USDT
  • Perpetual: BTC/USDT:USDT
  • Common shorthand is normalized automatically: btc, BTCUSDT, BTC-USDT

all work (funding/OI tools land on the perp form).

---

Roadmap

  • Add more exchanges to SUPPORTED_EXCHANGES.
  • More aggressive caching of hot symbols to cut latency.
  • Optional websocket streaming for live order book / trades.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.