get-block-raw
Retrieve raw hex data for a specific Bitcoin block by providing its unique hash using the Mempool MCP Server tool designed for accessing real-time blockchain information.
Instructions
Returns raw hex for a block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | The block hash to get raw hex for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hash": {
"description": "The block hash to get raw hex for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}