get-tx-status
Check the status of a Bitcoin transaction using the transaction ID (txid). Tool integrates with Mempool MCP Server for real-time blockchain and mempool data retrieval.
Instructions
Returns status for a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txid | Yes | The txid to get status for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"txid": {
"description": "The txid to get status for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"txid"
],
"type": "object"
}