get-address-utxo
Retrieve UTXOs (Unspent Transaction Outputs) for a specific Bitcoin address using this Mempool MCP Server tool. Easily query and analyze blockchain data for transaction insights.
Instructions
Returns UTXOs for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to get UTXOs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The address to get UTXOs for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}