Morpho API MCP Server

get_market_positions

Retrieve and organize market positions by specifying a market unique key, with options for pagination, ordering, and filtering results based on supply or borrow metrics.

Instructions

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" }
ID: t3vqcxa90h