tx_status
Pack: blockstream-info · Endpoint: https://gateway.pipeworx.io/blockstream-info/mcp
Confirmation status for a txid (block_height, block_hash, confirmed).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
txid | string | yes | |
network | string | no |
Example call
curl -X POST https://gateway.pipeworx.io/blockstream-info/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tx_status","arguments":{}}}'
Response shape
Always returns: confirmed
| Field | Type | Description |
|---|---|---|
confirmed | boolean | Is transaction confirmed |
block_height | number | Block height if confirmed |
block_hash | string | Block hash if confirmed |
block_time | number | Block time if confirmed |
Full JSON Schema
{
"type": "object",
"properties": {
"confirmed": {
"type": "boolean",
"description": "Is transaction confirmed"
},
"block_height": {
"type": "number",
"description": "Block height if confirmed"
},
"block_hash": {
"type": "string",
"description": "Block hash if confirmed"
},
"block_time": {
"type": "number",
"description": "Block time if confirmed"
}
},
"required": [
"confirmed"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"blockstream-info": {
"url": "https://gateway.pipeworx.io/blockstream-info/mcp"
}
}
}
See Getting Started for client-specific install steps.