get_token_balance
Retrieve the token balance for a specific Ethereum address using the Etherscan MCP. Input chain ID, token address, and wallet address to obtain accurate balance details.
Instructions
Get the balance of a specific token for a specific address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to check the balance for | |
chain_id | Yes | The chain ID | |
token_address | Yes | The address of the token |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to check the balance for",
"type": "string"
},
"chain_id": {
"description": "The chain ID",
"type": "integer"
},
"token_address": {
"description": "The address of the token",
"type": "string"
}
},
"required": [
"chain_id",
"token_address",
"address"
],
"type": "object"
}