get_emissions
Retrieve essential token emissions data, including basic info for each token, directly via the REI Crypto MCP Server without managing individual API keys.
Instructions
GET /api/emissions
List of all tokens along with basic info for each.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- defillama_server.py:248-255 (handler)The handler function for the 'get_emissions' MCP tool. It is registered via the @mcp.tool() decorator and fetches the list of all tokens with basic info from the DefiLlama /api/emissions endpoint using the shared make_request helper.@mcp.tool() async def get_emissions() -> str: """GET /api/emissions List of all tokens along with basic info for each. """ result = await make_request('GET', '/api/emissions') return str(result)