address

Pack: blockstream-info · Endpoint: https://gateway.pipeworx.io/blockstream-info/mcp

Address summary (chain + mempool stats).

Parameters

NameTypeRequiredDescription
addressstringyes
networkstringno

Example call

Arguments

{
  "address": "1A1z7agoat4JpiLvH5NNRZTweLaqLFJ5d"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "address": "tb1qw508d6qejxtdg4y5r3zarvary0c5xw7kxpjzsx",
  "network": "testnet"
}

Response shape

FieldTypeDescription
addressstringBitcoin address
chain_statsobjectChain statistics
mempool_statsobjectMempool statistics
Full JSON Schema
{
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Bitcoin address"
    },
    "chain_stats": {
      "type": "object",
      "description": "Chain statistics",
      "properties": {
        "funded_txo_count": {
          "type": "number",
          "description": "Funded output count"
        },
        "funded_txo_sum": {
          "type": "number",
          "description": "Funded sum in satoshis"
        },
        "spent_txo_count": {
          "type": "number",
          "description": "Spent output count"
        },
        "spent_txo_sum": {
          "type": "number",
          "description": "Spent sum in satoshis"
        },
        "tx_count": {
          "type": "number",
          "description": "Total transaction count"
        }
      }
    },
    "mempool_stats": {
      "type": "object",
      "description": "Mempool statistics",
      "properties": {
        "funded_txo_count": {
          "type": "number",
          "description": "Mempool funded count"
        },
        "funded_txo_sum": {
          "type": "number",
          "description": "Mempool funded sum"
        },
        "spent_txo_count": {
          "type": "number",
          "description": "Mempool spent count"
        },
        "spent_txo_sum": {
          "type": "number",
          "description": "Mempool spent sum"
        },
        "tx_count": {
          "type": "number",
          "description": "Mempool transaction count"
        }
      }
    }
  }
}

Connect

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

{
  "mcpServers": {
    "blockstream-info": {
      "url": "https://gateway.pipeworx.io/blockstream-info/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026