get_block_summary
Generate AI-powered summaries for Ethereum blocks to quickly understand block contents and activities without manual analysis.
Instructions
Get AI-generated summary for a specific block
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| block_number | Yes | The block number to get summary for |
Implementation Reference
- index.js:730-731 (handler)Handler case within the handleToolCall method that dispatches the get_block_summary tool call to the ChainFETCH API endpoint for block summaries.case 'get_block_summary': return await this.makeRequest('/api/v1/ethereum/blocks/summary', 'GET', args, null, token);
- index.js:355-367 (schema)Schema definition for the get_block_summary tool, including input schema requiring 'block_number' as a string, provided in the listTools response.name: 'get_block_summary', description: 'Get AI-generated summary for a specific block', inputSchema: { type: 'object', properties: { block_number: { type: 'string', description: 'The block number to get summary for', }, }, required: ['block_number'], }, },