get-address-txs
Retrieve all transactions associated with a specific Bitcoin address using the Mempool MCP Server, providing detailed blockchain and mempool insights for analysis or verification purposes.
Instructions
Returns transactions for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to get txs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The address to get txs for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}