Morpho API MCP Server

get_historical_apy

Retrieve historical APY data for a specific market using chainId, marketUniqueKey, and timestamp range. Supports hourly, daily, weekly, and monthly intervals for detailed analysis.

Instructions

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