ethereum_getTokenBalance
Retrieve the ERC20 token balance for a specified Ethereum address and token contract. Use the Veri5ight MCP Server to query token balances easily.
Instructions
Get ERC20 token balance for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Ethereum address or ENS name | |
token | Yes | Token contract address or ENS name |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Ethereum address or ENS name",
"type": "string"
},
"token": {
"description": "Token contract address or ENS name",
"type": "string"
}
},
"required": [
"address",
"token"
],
"type": "object"
}