EVM MCP Server

by mcpdotdirect
Verified

get_erc20_balance

Retrieve the ERC20 token balance for a specified Ethereum address by providing the wallet address and token contract address. Works across multiple Ethereum-compatible networks.

Instructions

Get the ERC20 token balance of an Ethereum address

Input Schema

NameRequiredDescriptionDefault
addressYesThe Ethereum address to check
networkNoNetwork name or chain ID. Defaults to Ethereum mainnet.
tokenAddressYesThe ERC20 token contract address

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "address": { "description": "The Ethereum address to check", "type": "string" }, "network": { "description": "Network name or chain ID. Defaults to Ethereum mainnet.", "type": "string" }, "tokenAddress": { "description": "The ERC20 token contract address", "type": "string" } }, "required": [ "address", "tokenAddress" ], "type": "object" }
ID: z9r55dx1np