Cryptocurrency Market Data MCP Server

MIT License
13
  • Apple

get-price-change

Get price change statistics over different time periods

Input Schema

NameRequiredDescriptionDefault
exchangeNoExchange to use (supported: binance, coinbase, kraken, kucoin, hyperliquid, huobi, bitfinex, bybit, okx, mexc)binance
symbolYesTrading pair symbol (e.g., BTC/USDT, ETH/USDT)

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" }, "symbol": { "description": "Trading pair symbol (e.g., BTC/USDT, ETH/USDT)", "type": "string" } }, "required": [ "symbol" ], "type": "object" }