CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

get-exchange-info

Retrieve detailed exchange information and status, including market types, for cryptocurrency exchanges using the CCXT MCP Server. Specify exchange ID and optional market type for precise data.

Instructions

Get exchange information and status

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, coinbase)
marketTypeNoMarket type (default: spot)

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" } }, "required": [ "exchange" ], "type": "object" }
ID: zrx6mdpyxy