get_balance
Retrieves the current ETH balance of an Ethereum address.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
address | string | Yes | Valid Ethereum address (0x-prefixed) |
Returns
{
"balance": "42.0691337"
}Example
Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "mcpwallet_get_balance",
"arguments": {
"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
}
}
}