get_address
Pack: blockscout · Endpoint: https://gateway.pipeworx.io/blockscout/mcp
“What’s the balance of [wallet]” / “Ethereum / Polygon / Arbitrum / Base wallet info” / “address summary for [0x…]” / “what tokens does [wallet] hold” — on-chain address summary across 20+ EVM chains (Ethereum, Optimism, Polygon, Arbitrum, Base, BNB, Gnosis, Celo, zkSync, Scroll, Linea, Blast, …). Returns balance, transaction count, token-holding stats. Pass chain slug + 0x address.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | Chain slug (see list_chains) |
address | string | yes | 0x address |
Example call
Arguments
{
"chain": "ethereum",
"address": "0x1234567890123456789012345678901234567890"
}
curl
curl -X POST https://gateway.pipeworx.io/blockscout/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_address","arguments":{"chain":"ethereum","address":"0x1234567890123456789012345678901234567890"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_address', {
"chain": "ethereum",
"address": "0x1234567890123456789012345678901234567890"
});
More examples
{
"chain": "polygon",
"address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Address summary from Blockscout API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"blockscout": {
"url": "https://gateway.pipeworx.io/blockscout/mcp"
}
}
}
See Getting Started for client-specific install steps.