getBalance
Retrieve the Ethereum balance of a specific address using the MCP server agentek-eth. Supports chain ID and ETH format options for accurate results.
Instructions
Get the ETH balance for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
chainId | No | ||
formatEth | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"chainId": {
"type": "number"
},
"formatEth": {
"type": "boolean"
}
},
"required": [
"address"
],
"type": "object"
}