Morpho API MCP Server

get_vault_apy_history

Get historical APY data for a vault.

Input Schema

NameRequiredDescriptionDefault
addressYes
optionsYes

Input Schema (JSON Schema)

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