get_tx_status
Pack: mempool-space · Endpoint: https://gateway.pipeworx.io/mempool-space/mcp
Return confirmation status (confirmed, block hash, block height) for a txid without fetching the full transaction body.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
txid | string | yes | |
network | string | no |
Example call
Arguments
{
"txid": "1da1f48e9e20a6be6fa7d4df5c5e9e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e"
}
curl
curl -X POST https://gateway.pipeworx.io/mempool-space/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_tx_status","arguments":{"txid":"1da1f48e9e20a6be6fa7d4df5c5e9e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_tx_status', {
"txid": "1da1f48e9e20a6be6fa7d4df5c5e9e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e"
});
Response shape
| Field | Type | Description |
|---|---|---|
confirmed | boolean | Is transaction confirmed |
block_height | number | Confirmation block height |
block_hash | string | Confirmation block hash |
block_time | number | Confirmation block timestamp |
Full JSON Schema
{
"type": "object",
"properties": {
"confirmed": {
"type": "boolean",
"description": "Is transaction confirmed"
},
"block_height": {
"type": "number",
"description": "Confirmation block height"
},
"block_hash": {
"type": "string",
"description": "Confirmation block hash"
},
"block_time": {
"type": "number",
"description": "Confirmation block timestamp"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mempool-space": {
"url": "https://gateway.pipeworx.io/mempool-space/mcp"
}
}
}
See Getting Started for client-specific install steps.