EVM MCP Server

by mcpdotdirect
Verified

get_token_balance_erc20

Get ERC20 token balance for an address

Input Schema

NameRequiredDescriptionDefault
addressYesThe address to check balance for
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 address to check balance for", "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" }