get-block-header
Retrieve the block header in hexadecimal format using the block hash. Integrates with the Mempool MCP Server for real-time Bitcoin blockchain data access.
Instructions
Returns the block header in hex
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | The block hash to get header for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hash": {
"description": "The block hash to get header for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}