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