get-token-balance
Retrieve the ERC-20 token balance for a specific wallet address using MetaMask MCP server, ensuring your private keys remain secure in your crypto wallet.
Instructions
Get token balance of an address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to get balance for. | |
token | Yes | ERC-20 token address to get balance for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "Address to get balance for.",
"type": "string"
},
"token": {
"$ref": "#/properties/address",
"description": "ERC-20 token address to get balance for."
}
},
"required": [
"address",
"token"
],
"type": "object"
}