get-native-currency-balance
Retrieve the native currency balance of a specified blockchain address securely through MetaMask MCP, ensuring private keys remain protected in your crypto wallet.
Instructions
Get the native currency balance of an address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | 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"
}
},
"required": [
"address"
],
"type": "object"
}