CCXT MCP Server

by lazy-dinosaur
Verified

fetchOrder

Retrieve detailed information about a specific cryptocurrency order using the configured account, order ID, and trading symbol via the CCXT MCP Server.

Instructions

Fetch information about a specific order using a configured account

Input Schema

NameRequiredDescriptionDefault
accountNameYesAccount name defined in the configuration file (e.g., 'bybit_main')
idYesOrder ID to fetch
paramsNoAdditional exchange-specific parameters
symbolYesTrading symbol (e.g., 'BTC/USDT')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "accountName": { "description": "Account name defined in the configuration file (e.g., 'bybit_main')", "type": "string" }, "id": { "description": "Order ID to fetch", "type": "string" }, "params": { "additionalProperties": {}, "description": "Additional exchange-specific parameters", "type": "object" }, "symbol": { "description": "Trading symbol (e.g., 'BTC/USDT')", "type": "string" } }, "required": [ "accountName", "id", "symbol" ], "type": "object" }
ID: mt6hftp7hy