get_emissions
Retrieve token emissions data for cryptocurrency analysis using integrated DeFiLlama, CoinGecko, and Arkham Intelligence APIs.
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' tool. It makes a GET request to the DefiLlama /api/emissions endpoint using the shared make_request helper and returns the JSON response as a string. The @mcp.tool() decorator registers this function as an MCP tool.@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)