get-address-txs-chain
Fetch all chain transactions linked to a specific Bitcoin address using real-time blockchain data from the Mempool MCP Server.
Instructions
Returns chain transactions for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to get chain txs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The address to get chain txs for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}