Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

get_balance

Retrieves the current ETH balance of an Ethereum address.

Parameters

ParameterTypeRequiredDescription
addressstringYesValid 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"
    }
  }
}