get_yield_lsd_rates
Retrieve APY rates for multiple Liquid Staking Derivatives (LSDs) using the REI Crypto MCP Server, enabling users to access and analyze yield data without managing individual API keys.
Instructions
GET /yields/lsdRates
APY rates of multiple LSDs.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- defillama_server.py:383-390 (handler)The handler function for the 'get_yield_lsd_rates' tool. It is decorated with @mcp.tool() for automatic registration and fetches APY rates of multiple LSDs from the DefiLlama API endpoint '/yields/lsdRates' using the shared make_request helper.@mcp.tool() async def get_yield_lsd_rates() -> str: """GET /yields/lsdRates APY rates of multiple LSDs. """ result = await make_request('GET', '/yields/lsdRates') return str(result)