CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

get-markets

Retrieve all available markets for a specified cryptocurrency exchange using a high-performance MCP server, enabling efficient data integration and analysis.

Instructions

Get all available markets for an exchange

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, coinbase)
pageNoPage number
pageSizeNoItems per page

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" }, "page": { "default": 1, "description": "Page number", "type": "number" }, "pageSize": { "default": 100, "description": "Items per page", "type": "number" } }, "required": [ "exchange" ], "type": "object" }
ID: zrx6mdpyxy