get_block_info
Retrieve detailed information about a specific block by its number or hash across supported blockchain networks using the Bankless Onchain MCP Server.
Instructions
Gets detailed information about a specific block by number or hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockId | Yes | The block number or block hash to fetch information for | |
network | Yes | The blockchain network (e.g., "ethereum", "base") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockId": {
"description": "The block number or block hash to fetch information for",
"type": "string"
},
"network": {
"description": "The blockchain network (e.g., \"ethereum\", \"base\")",
"type": "string"
}
},
"required": [
"network",
"blockId"
],
"type": "object"
}