tx_status

Pack: blockstream-info · Endpoint: https://gateway.pipeworx.io/blockstream-info/mcp

Confirmation status for a txid (block_height, block_hash, confirmed).

Parameters

NameTypeRequiredDescription
txidstringyes
networkstringno

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

FieldTypeDescription
confirmedbooleanIs transaction confirmed
block_heightnumberBlock height if confirmed
block_hashstringBlock hash if confirmed
block_timenumberBlock 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.

Regenerated from source · build May 21, 2026