Morpho API MCP Server

get_vault_apy_history

Retrieve historical APY data for a specific vault by providing its address, start/end timestamps, and interval. Analyze vault performance over time using Morpho API MCP Server.

Instructions

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