Bybit MCP Server

get_ticker

Get real-time ticker information for a trading pair

Input Schema

NameRequiredDescriptionDefault
categoryNoCategory of the instrument (spot, linear, inverse)
symbolYesTrading pair symbol (e.g., 'BTCUSDT')

Input Schema (JSON Schema)

{ "properties": { "category": { "annotations": { "priority": 0 }, "description": "Category of the instrument (spot, linear, inverse)", "enum": [ "spot", "linear", "inverse" ], "type": "string" }, "symbol": { "annotations": { "priority": 1 }, "description": "Trading pair symbol (e.g., 'BTCUSDT')", "pattern": "^[A-Z0-9]+$", "type": "string" } }, "required": [ "symbol" ], "type": "object" }