get_oracles
Retrieve comprehensive oracle data across all protocols using the REI Crypto MCP Server, enabling streamlined access to decentralized finance insights without managing individual API keys.
Instructions
GET /api/oracles
Overview of all oracles across all protocols.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- defillama_server.py:287-294 (handler)Handler function decorated with @mcp.tool() that implements the get_oracles tool by calling the DefiLlama API endpoint /api/oracles and returning the result as string.@mcp.tool() async def get_oracles() -> str: """GET /api/oracles Overview of all oracles across all protocols. """ result = await make_request('GET', '/api/oracles') return str(result)