CCXT MCP Server

by lazy-dinosaur
Verified

fetchTickers

Retrieve ticker data for all or specific trading pairs from a cryptocurrency exchange, enabling real-time market analysis and decision-making.

Instructions

Fetch all tickers from an exchange

Input Schema

NameRequiredDescriptionDefault
exchangeIdYesExchange ID (e.g., 'binance', 'coinbase')
symbolsNoOptional list of specific symbols to fetch

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "exchangeId": { "description": "Exchange ID (e.g., 'binance', 'coinbase')", "type": "string" }, "symbols": { "description": "Optional list of specific symbols to fetch", "items": { "type": "string" }, "type": "array" } }, "required": [ "exchangeId" ], "type": "object" }
ID: mt6hftp7hy