get_address

Pack: mempool-space · Endpoint: https://gateway.pipeworx.io/mempool-space/mcp

Address summary (UTXO + tx counts).

Parameters

NameTypeRequiredDescription
addressstringyes
networkstringno

Example call

Arguments

{
  "address": "1A1z7agoat5JZ5sqM8cBkFFikTxGkna6uk"
}

curl

curl -X POST https://gateway.pipeworx.io/mempool-space/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_address","arguments":{"address":"1A1z7agoat5JZ5sqM8cBkFFikTxGkna6uk"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_address', {
  "address": "1A1z7agoat5JZ5sqM8cBkFFikTxGkna6uk"
});

Response shape

FieldTypeDescription
addressstringAddress string
chain_statsobjectOn-chain statistics
mempool_statsobjectUnconfirmed statistics
Full JSON Schema
{
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Address string"
    },
    "chain_stats": {
      "type": "object",
      "description": "On-chain statistics",
      "properties": {
        "funded_txo_count": {
          "type": "number",
          "description": "Funded transaction outputs"
        },
        "funded_txo_sum": {
          "type": "number",
          "description": "Total funded in satoshis"
        },
        "spent_txo_count": {
          "type": "number",
          "description": "Spent transaction outputs"
        },
        "spent_txo_sum": {
          "type": "number",
          "description": "Total spent in satoshis"
        },
        "tx_count": {
          "type": "number",
          "description": "Transaction count"
        }
      }
    },
    "mempool_stats": {
      "type": "object",
      "description": "Unconfirmed statistics",
      "properties": {
        "funded_txo_count": {
          "type": "number",
          "description": "Unconfirmed funded outputs"
        },
        "funded_txo_sum": {
          "type": "number",
          "description": "Unconfirmed funded sum"
        },
        "spent_txo_count": {
          "type": "number",
          "description": "Unconfirmed spent outputs"
        },
        "spent_txo_sum": {
          "type": "number",
          "description": "Unconfirmed spent sum"
        },
        "tx_count": {
          "type": "number",
          "description": "Unconfirmed transaction count"
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "mempool-space": {
      "url": "https://gateway.pipeworx.io/mempool-space/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026