Bybit MCP Server

get_positions

Get positions information for the authenticated user

Input Schema

NameRequiredDescriptionDefault
baseCoinNoBase coin. Used to get all symbols with this base coin
categoryYesProduct type
limitNoMaximum number of results (default: 200)
settleCoinNoSettle coin. Used to get all symbols with this settle coin
symbolNoTrading symbol, e.g., BTCUSDT

Input Schema (JSON Schema)

{ "properties": { "baseCoin": { "description": "Base coin. Used to get all symbols with this base coin", "type": "string" }, "category": { "description": "Product type", "enum": [ "linear", "inverse" ], "type": "string" }, "limit": { "description": "Maximum number of results (default: 200)", "enum": [ "1", "10", "50", "100", "200" ], "type": "string" }, "settleCoin": { "description": "Settle coin. Used to get all symbols with this settle coin", "type": "string" }, "symbol": { "description": "Trading symbol, e.g., BTCUSDT", "type": "string" } }, "required": [ "category" ], "type": "object" }