Cryptocurrency Market Data MCP Server

MIT License
13
  • Apple

get-top-volumes

Get top cryptocurrencies by trading volume from a specific exchange

Input Schema

NameRequiredDescriptionDefault
exchangeNoExchange to use (supported: binance, coinbase, kraken, kucoin, hyperliquid, huobi, bitfinex, bybit, okx, mexc)binance
limitNoNumber of pairs to return (default: 5)

Input Schema (JSON Schema)

{ "properties": { "exchange": { "default": "binance", "description": "Exchange to use (supported: binance, coinbase, kraken, kucoin, hyperliquid, huobi, bitfinex, bybit, okx, mexc)", "enum": [ "binance", "coinbase", "kraken", "kucoin", "hyperliquid", "huobi", "bitfinex", "bybit", "okx", "mexc" ], "type": "string" }, "limit": { "description": "Number of pairs to return (default: 5)", "type": "number" } }, "type": "object" }