get-block
Retrieve detailed Bitcoin block information using a specific hash with the MCP server’s tool designed for accessing real-time blockchain data.
Instructions
Returns details about a block from hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | The hash info to get block |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hash": {
"description": "The hash info to get block",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}