CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

get-trades

Retrieve recent trades for a specified trading pair and exchange using the CCXT MCP Server. Input exchange ID, trading symbol, and optional trade limit to fetch trade data efficiently.

Instructions

Get recent trades for a trading pair

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, coinbase)
limitNoNumber of trades to fetch
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" }, "limit": { "default": 50, "description": "Number of trades to fetch", "type": "number" }, "symbol": { "description": "Trading pair symbol (e.g., BTC/USDT)", "type": "string" } }, "required": [ "exchange", "symbol" ], "type": "object" }
ID: zrx6mdpyxy