Morpho API MCP Server

get_asset_price

Get current price and yield information for specific assets.

Input Schema

NameRequiredDescriptionDefault
chainIdNoChain ID (default: 1 for Ethereum)
firstNoNumber of items to return
skipNoNumber of items to skip
symbolYesAsset symbol (e.g. "sDAI")

Input Schema (JSON Schema)

{ "properties": { "chainId": { "description": "Chain ID (default: 1 for Ethereum)", "type": "number" }, "first": { "description": "Number of items to return", "type": "number" }, "skip": { "description": "Number of items to skip", "type": "number" }, "symbol": { "description": "Asset symbol (e.g. \"sDAI\")", "type": "string" } }, "required": [ "symbol" ], "type": "object" }