Morpho API MCP Server

get_historical_apy

Get historical APY data for a specific market.

Input Schema

NameRequiredDescriptionDefault
chainIdNo
endTimestampYes
intervalYes
marketUniqueKeyYes
startTimestampYes

Input Schema (JSON Schema)

{ "properties": { "chainId": { "type": "number" }, "endTimestamp": { "type": "number" }, "interval": { "enum": [ "HOUR", "DAY", "WEEK", "MONTH" ], "type": "string" }, "marketUniqueKey": { "type": "string" }, "startTimestamp": { "type": "number" } }, "required": [ "marketUniqueKey", "startTimestamp", "endTimestamp", "interval" ], "type": "object" }