Morpho API MCP Server

get_market_positions

Get positions overview for specific markets with pagination and ordering.

Input Schema

NameRequiredDescriptionDefault
firstNoNumber of positions to return (default: 30)
marketUniqueKeyYesUnique key of the market
orderByNoField to order by
orderDirectionNoOrder direction
skipNoNumber of positions to skip

Input Schema (JSON Schema)

{ "properties": { "first": { "description": "Number of positions to return (default: 30)", "type": "number" }, "marketUniqueKey": { "description": "Unique key of the market", "type": "string" }, "orderBy": { "description": "Field to order by", "enum": [ "SupplyShares", "BorrowShares", "SupplyAssets", "BorrowAssets" ], "type": "string" }, "orderDirection": { "description": "Order direction", "enum": [ "Asc", "Desc" ], "type": "string" }, "skip": { "description": "Number of positions to skip", "type": "number" } }, "required": [ "marketUniqueKey" ], "type": "object" }