Web3 MCP Server

getEvmBalance

Get native token balance for an EVM address on any supported network

Input Schema

NameRequiredDescriptionDefault
addressYesEVM account address
networkYesNetwork name (ethereum, base, arbitrum, optimism, bsc, polygon, avalanche)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "address": { "description": "EVM account address", "type": "string" }, "network": { "description": "Network name (ethereum, base, arbitrum, optimism, bsc, polygon, avalanche)", "type": "string" } }, "required": [ "address", "network" ], "type": "object" }