Blockscout MCP
get_block_info
Get block information like timestamp, gas used, burnt fees, transaction count etc. Can optionally include the list of transaction hashes contained in the block. Transaction hashes are omitted by default; request them only when you truly need them, because on high-traffic chains the list may exhaust the context.
Remote blockscout/mcp-server
Other tools also called get_block_info?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"chain_id": {
"type": "string",
"title": "Chain Id",
"description": "The ID of the blockchain"
},
"number_or_hash": {
"type": "string",
"title": "Number Or Hash",
"description": "Block number or hash"
},
"include_transactions": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Include Transactions",
"default": false,
"description": "If true, includes a list of transaction hashes from the block."
}
}
}