get_forks
Retrieve comprehensive data on all blockchain protocol forks via the REI Crypto MCP Server, enabling efficient tracking and analysis without managing multiple API keys.
Instructions
GET /api/forks
Overview of all forks across all protocols.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- defillama_server.py:278-285 (handler)The handler and registration for the 'get_forks' tool. This async function is decorated with @mcp.tool() which registers it in the FastMCP server. It makes a GET request to the DefiLlama /api/forks endpoint to retrieve an overview of all forks across protocols and returns the result as a string.@mcp.tool() async def get_forks() -> str: """GET /api/forks Overview of all forks across all protocols. """ result = await make_request('GET', '/api/forks') return str(result)