list_transactions

Pack: etherscan · Endpoint: https://gateway.pipeworx.io/etherscan/mcp

List transactions for an address. type controls which list: “normal” (regular EOA txs), “internal” (contract-internal value transfers), “erc20” (ERC-20 transfers), “erc721” (NFT transfers), “erc1155” (multi-token transfers).

Parameters

NameTypeRequiredDescription
addressstringyesAddress to inspect
typestringnonormal | internal | erc20 | erc721 | erc1155 (default normal)
chainstringnoChain slug or chain ID (default ethereum)
startblocknumbernoStart block (default 0)
endblocknumbernoEnd block (default latest = 99999999)
sortstringnoasc | desc (default desc)
offsetnumbernoResults per page (default 25, max 10000)
pagenumbernoPage number (default 1)

Example call

Arguments

{
  "address": "0x1234567890123456789012345678901234567890"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_transactions', {
  "address": "0x1234567890123456789012345678901234567890"
});

More examples

{
  "address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
  "type": "erc20",
  "chain": "base",
  "sort": "asc",
  "page": 1
}

Response shape

Always returns: chain_id, chain_name, address, type, count, transactions

FieldTypeDescription
chain_idnumberNumeric chain ID
chain_namestring | nullHuman-readable chain name or null
addressstringThe queried address
typestringTransaction type: normal|internal|erc20|erc721|erc1155
countnumberNumber of transactions returned
transactionsarrayArray of transaction objects from Etherscan API
Full JSON Schema
{
  "type": "object",
  "properties": {
    "chain_id": {
      "type": "number",
      "description": "Numeric chain ID"
    },
    "chain_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Human-readable chain name or null"
    },
    "address": {
      "type": "string",
      "description": "The queried address"
    },
    "type": {
      "type": "string",
      "description": "Transaction type: normal|internal|erc20|erc721|erc1155"
    },
    "count": {
      "type": "number",
      "description": "Number of transactions returned"
    },
    "transactions": {
      "type": "array",
      "description": "Array of transaction objects from Etherscan API",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "chain_id",
    "chain_name",
    "address",
    "type",
    "count",
    "transactions"
  ]
}

Connect

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

{
  "mcpServers": {
    "etherscan": {
      "url": "https://gateway.pipeworx.io/etherscan/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 27, 2026