get-tx-info
Retrieve detailed information about a Bitcoin transaction using its txid with Mempool MCP Server, enabling precise blockchain data access for analysis or verification.
Instructions
Returns details about a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txid | Yes | The txid to get info for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"txid": {
"description": "The txid to get info for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"txid"
],
"type": "object"
}