Etherscan

liveCryptoFinance

Multichain EVM block explorer (Etherscan V2) — 50+ chains under one key. Balances, txs, contract ABI/source.

5tools
0msauth
free tier50 calls/day

Tools

get_balancerequired: address

Native-token balance for an address on any supported chain.

Parameters
NameTypeDescription
addressreqstring0x address
chainoptstringSlug or numeric chain ID (default ethereum)
Try it
get_token_balancerequired: address, contract_address

ERC-20 balance for an address against a specific token contract.

Parameters
NameTypeDescription
addressreqstringHolder address
contract_addressreqstringERC-20 contract
chainoptstringSlug or numeric chain ID
Try it
list_transactionsrequired: address

normal / internal / erc20 / erc721 / erc1155 transactions for an address.

Parameters
NameTypeDescription
addressreqstringAddress
typeoptstringnormal | internal | erc20 | erc721 | erc1155
chainoptstringSlug or chain ID
startblockoptnumberStart block
endblockoptnumberEnd block
sortoptstringasc | desc
offsetoptnumberPage size (default 25)
pageoptnumberPage (default 1)
Try it
get_contract_abirequired: address

Verified ABI for a contract.

Parameters
NameTypeDescription
addressreqstringContract address
chainoptstringSlug or chain ID
Try it
get_contract_sourcerequired: address

Verified source code, compiler metadata, license.

Parameters
NameTypeDescription
addressreqstringContract address
chainoptstringSlug or chain ID
Try it

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");