Binance Cryptocurrency MCP

get_trading_day_ticker

Fetch real-time trading data for specified cryptocurrency pairs on Binance. Input one or multiple symbols, choose output format (FULL or MINI), and adjust time zone to retrieve detailed or summarized market statistics.

Input Schema

NameRequiredDescriptionDefault
symbolNoTrading pair symbol, e.g. BTCUSDT
symbolsNoArray of multiple trading pair symbols
timeZoneNoTime zone, default 0
typeNoReturn data type, FULL or MINI

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "symbol": { "description": "Trading pair symbol, e.g. BTCUSDT", "type": "string" }, "symbols": { "description": "Array of multiple trading pair symbols", "items": { "type": "string" }, "type": "array" }, "timeZone": { "description": "Time zone, default 0", "type": "number" }, "type": { "description": "Return data type, FULL or MINI", "enum": [ "FULL", "MINI" ], "type": "string" } }, "type": "object" }
ID: sq1g72mqqx