get-tx-outspends
Retrieve detailed outspends information for all outputs of a specified Bitcoin transaction, enabling analysis of transaction dependencies and spending status using the Mempool MCP Server.
Instructions
Returns outspends info for all outputs of a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txid | Yes | The txid to get outspends for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"txid": {
"description": "The txid to get outspends for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"txid"
],
"type": "object"
}