get-block-txs
Retrieve all transactions for a specific Bitcoin block using its hash, providing detailed blockchain data for analysis and insights through the Mempool MCP Server.
Instructions
Returns transactions for a block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | The block hash to get txs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hash": {
"description": "The block hash to get txs for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}