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

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":{}}}'

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 if unknown
addressstringQueried address
typestringTransaction type requested
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 if unknown"
    },
    "address": {
      "type": "string",
      "description": "Queried address"
    },
    "type": {
      "type": "string",
      "description": "Transaction type requested",
      "enum": [
        "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",
        "description": "Transaction data (schema varies by type)"
      }
    }
  },
  "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 May 21, 2026