get-block-status
Retrieve the status of a Bitcoin block by providing its hash, ensuring accurate and real-time blockchain data access via the Mempool MCP Server.
Instructions
Returns status for a block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | The block hash to get status for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hash": {
"description": "The block hash to get status for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}