Morpho API MCP Server

get_markets

Retrieve detailed market data from Morpho with pagination, ordering, and filtering options to analyze and manage lending and borrowing activities effectively.

Instructions

Retrieves markets from Morpho with pagination, ordering, and filtering support.

Input Schema

NameRequiredDescriptionDefault
firstNoNumber of items to return (default: 100)
orderByNoField to order by
orderDirectionNoOrder direction
skipNoNumber of items to skip
whereNo

Input Schema (JSON Schema)

{ "properties": { "first": { "description": "Number of items to return (default: 100)", "type": "number" }, "orderBy": { "description": "Field to order by", "enum": [ "Lltv", "BorrowApy", "SupplyApy", "BorrowAssets", "SupplyAssets", "BorrowAssetsUsd", "SupplyAssetsUsd", "Fee", "Utilization" ], "type": "string" }, "orderDirection": { "description": "Order direction", "enum": [ "Asc", "Desc" ], "type": "string" }, "skip": { "description": "Number of items to skip", "type": "number" }, "where": { "properties": { "collateralAssetAddress": { "type": "string" }, "loanAssetAddress": { "type": "string" }, "uniqueKey_in": { "items": { "type": "string" }, "type": "array" }, "whitelisted": { "type": "boolean" } }, "type": "object" } }, "type": "object" }
ID: t3vqcxa90h