Binance MCP Server

subscribe_market_data

Subscribe to real-time market data updates

Input Schema

NameRequiredDescriptionDefault
streamsYesList of data streams to subscribe to
symbolYesTrading pair symbol (e.g., BTCUSDT)
typeYesMarket type

Input Schema (JSON Schema)

{ "properties": { "streams": { "description": "List of data streams to subscribe to", "items": { "enum": [ "ticker", "trade", "kline", "depth", "forceOrder", "markPrice", "openInterest" ], "type": "string" }, "type": "array" }, "symbol": { "description": "Trading pair symbol (e.g., BTCUSDT)", "type": "string" }, "type": { "description": "Market type", "enum": [ "spot", "futures" ], "type": "string" } }, "required": [ "symbol", "type", "streams" ], "type": "object" }