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
| Name | Type | Required | Description |
|---|---|---|---|
address | string | yes | Address to inspect |
type | string | no | normal | internal | erc20 | erc721 | erc1155 (default normal) |
chain | string | no | Chain slug or chain ID (default ethereum) |
startblock | number | no | Start block (default 0) |
endblock | number | no | End block (default latest = 99999999) |
sort | string | no | asc | desc (default desc) |
offset | number | no | Results per page (default 25, max 10000) |
page | number | no | Page 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
| Field | Type | Description |
|---|---|---|
chain_id | number | Numeric chain ID |
chain_name | string | null | Human-readable chain name or null if unknown |
address | string | Queried address |
type | string | Transaction type requested |
count | number | Number of transactions returned |
transactions | array | Array 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.