Etherscan
liveCryptoFinanceMultichain EVM block explorer (Etherscan V2) — 50+ chains under one key. Balances, txs, contract ABI/source.
5tools
0msauth
free tier50 calls/day
Tools
get_balancerequired: addressNative-token balance for an address on any supported chain.
Parameters
NameTypeDescription
addressreqstring0x addresschainoptstringSlug or numeric chain ID (default ethereum)Try it
Response
get_token_balancerequired: address, contract_addressERC-20 balance for an address against a specific token contract.
Parameters
NameTypeDescription
addressreqstringHolder addresscontract_addressreqstringERC-20 contractchainoptstringSlug or numeric chain IDTry it
Response
list_transactionsrequired: addressnormal / internal / erc20 / erc721 / erc1155 transactions for an address.
Parameters
NameTypeDescription
addressreqstringAddresstypeoptstringnormal | internal | erc20 | erc721 | erc1155chainoptstringSlug or chain IDstartblockoptnumberStart blockendblockoptnumberEnd blocksortoptstringasc | descoffsetoptnumberPage size (default 25)pageoptnumberPage (default 1)Try it
Response
get_contract_abirequired: addressVerified ABI for a contract.
Parameters
NameTypeDescription
addressreqstringContract addresschainoptstringSlug or chain IDTry it
Response
get_contract_sourcerequired: addressVerified source code, compiler metadata, license.
Parameters
NameTypeDescription
addressreqstringContract addresschainoptstringSlug or chain IDTry it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/etherscan/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Call a tool
bash
curl -X POST https://gateway.pipeworx.io/etherscan/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_balance","arguments":{"address": "example"}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_balance", {"address":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("multichain evm block explorer (etherscan v2) — 50+ chains under one key");