get_balance
Retrieve the native token balance (ETH, MATIC, etc.) for a wallet address or ENS name across 30+ EVM-compatible networks using the EVM MCP Server.
Instructions
Get the native token balance (ETH, MATIC, etc.) for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The wallet address or ENS name (e.g., '0x1234...' or 'vitalik.eth') to check the balance for | |
network | No | Network name (e.g., 'ethereum', 'optimism', 'arbitrum', 'base', etc.) or chain ID. Supports all EVM-compatible networks. Defaults to Ethereum mainnet. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The wallet address or ENS name (e.g., '0x1234...' or 'vitalik.eth') to check the balance for",
"type": "string"
},
"network": {
"description": "Network name (e.g., 'ethereum', 'optimism', 'arbitrum', 'base', etc.) or chain ID. Supports all EVM-compatible networks. Defaults to Ethereum mainnet.",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}