get_etf_overview
Retrieve detailed metrics for BTC ETFs, including AUM, price, and fees, using streamlined API access from the REI Crypto MCP Server.
Instructions
GET /etfs/overview
Get BTC ETFs and their metrics (aum, price, fees...).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- defillama_server.py:393-399 (handler)The handler function implementing the get_etf_overview tool. It makes an API request to DefiLlama's /etfs/overview endpoint and returns the JSON response as a string.async def get_etf_overview() -> str: """GET /etfs/overview Get BTC ETFs and their metrics (aum, price, fees...). """ result = await make_request('GET', '/etfs/overview') return str(result)
- defillama_server.py:392-392 (registration)The @mcp.tool() decorator registers the get_etf_overview function as an MCP tool.@mcp.tool()