CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

get-ticker

Fetch real-time ticker data for a specified trading pair and exchange using the CCXT MCP Server. Input exchange ID and symbol to retrieve current market information.

Instructions

Get current ticker information for a trading pair

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, coinbase)
marketTypeNoMarket type (default: spot)
symbolYesTrading pair symbol (e.g., BTC/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" }, "symbol": { "description": "Trading pair symbol (e.g., BTC/USDT)", "type": "string" } }, "required": [ "exchange", "symbol" ], "type": "object" }
ID: zrx6mdpyxy