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