get_address_transactions

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

Recent transactions for an address (~25 per call).

Parameters

NameTypeRequiredDescription
addressstringyes
limitnumbernoDefault 25 (max ~50)
networkstringno

Example call

Arguments

{
  "address": "1A1z7agoat5JZ5sqM8cBkFFikTxGkna6uk",
  "limit": 25
}

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_transactions","arguments":{"address":"1A1z7agoat5JZ5sqM8cBkFFikTxGkna6uk","limit":25}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: count, transactions

FieldTypeDescription
countnumberNumber of transactions returned
transactionsarrayRecent transactions for address
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of transactions returned"
    },
    "transactions": {
      "type": "array",
      "description": "Recent transactions for address",
      "items": {
        "type": "object",
        "properties": {
          "txid": {
            "type": "string",
            "description": "Transaction ID"
          },
          "version": {
            "type": "number",
            "description": "Transaction version"
          },
          "locktime": {
            "type": "number",
            "description": "Locktime"
          },
          "vin": {
            "type": "array",
            "description": "Inputs"
          },
          "vout": {
            "type": "array",
            "description": "Outputs"
          },
          "size": {
            "type": "number",
            "description": "Size in bytes"
          },
          "weight": {
            "type": "number",
            "description": "Weight in WU"
          },
          "fee": {
            "type": "number",
            "description": "Fee in satoshis"
          },
          "status": {
            "type": "object",
            "description": "Confirmation status"
          }
        }
      }
    }
  },
  "required": [
    "count",
    "transactions"
  ]
}

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