CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

batch-get-tickers

Retrieve ticker data for multiple trading pairs simultaneously using the CCXT MCP Server. Specify an exchange and symbols to access real-time market information efficiently.

Instructions

Get ticker information for multiple trading pairs at once

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, coinbase)
marketTypeNoMarket type (default: spot)
symbolsYesList of trading pair symbols (e.g., ['BTC/USDT', 'ETH/USDT'])

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "exchange": { "description": "Exchange ID (e.g., binance, coinbase)", "type": "string" }, "marketType": { "description": "Market type (default: spot)", "enum": [ "spot", "future", "swap", "option", "margin" ], "type": "string" }, "symbols": { "description": "List of trading pair symbols (e.g., ['BTC/USDT', 'ETH/USDT'])", "items": { "type": "string" }, "type": "array" } }, "required": [ "exchange", "symbols" ], "type": "object" }
ID: zrx6mdpyxy