Labsco
MCP SERVER

Cryptocurrency Market Data

by Nayshins

Ask what a pair is trading at, on which exchange, and what it has done since — answered from the exchanges themselves through CCXT.

Cryptocurrency Market Data
Summary
Ten exchanges answer the same question, in the same shape.

CCXT does the reconciling underneath, so what ETH/USDT is doing on Kraken versus Binance is two calls of one form rather than two APIs to learn — and the candles are there for when the current price is not the answer.

What it is

A market data reader built on CCXT. It quotes live prices and order-book summaries from ten major exchanges — Binance, Coinbase, Kraken, KuCoin, HyperLiquid, Huobi, Bitfinex, Bybit, OKX and MEXC — and returns the candles and volume history behind them.

What you get
  • The current price of any trading pair on a named exchange
  • A market summary with the bid and ask spread
  • The top trading pairs on an exchange by volume
  • OHLCV candles over a timeframe you choose
  • Price change statistics and volume history for a pair
  • The list of supported exchanges
Requirements

Python 3.9+ with the mcp and ccxt packages installed, run as a local script. Everything is fetched from the exchanges at request time, so it needs network access; the documented setup passes no exchange keys.

Setup effort

One command — npx -y @smithery/cli install mcp-server-ccxt --client claude