Skip to main content
Glama
dinggi5

Kura

get_balances

Retrieve the active wallet's USDC and gas-token balances on the selected network. Returns gas balance separately, except on Arc where USDC covers gas.

Instructions

Reads the active account's USDC (for payments) and gas-token balances on the active network (Base mainnet, Base Sepolia, or Arc testnet, per the user's setting). The eth field is the gas balance and is ABSENT on chains where gas is paid in USDC itself (Arc) — there the USDC balance already covers gas, so never add the two together. Errors if there is no wallet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full responsibility. It discloses the absence of the `eth` field on Arc and warns against summing balances, plus states the error condition (no wallet). It does not explicitly state that the operation is read-only, but 'Reads' implies non-mutation. It is transparent but could explicitly mention read-only to be fully clear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is moderately sized but every sentence adds value. The core purpose is front-loaded, and the critical caveat about Arc is included without unnecessary elaboration. It could be slightly more compact, but the detail is justified given the network-specific behavior.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter read tool with no output schema, the description provides essential behavioral context: what fields to expect, the special case for Arc, and the failure condition. An agent can predict the return shape and understand the cross-chain nuance without additional documentation. This is complete for its complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters and schema coverage is 100%, so the description has no burden to explain parameters. The baseline for no-param tools is 4, and the description correctly focuses on what the tool returns rather than input semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as reading two balance types (USDC and gas token) for the active account on the active network, with specific chain names. It distinguishes itself from sibling tools by its focus on balances only, and the mention of the `eth` field and its absence on Arc adds precision.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

While it does not explicitly list alternatives or exclusion scenarios, it provides strong contextual cues (active account, active network, chain-specific behavior) that imply when to use it. The note about never adding USDC and gas on Arc is a critical usage guideline, but it does not state when to prefer other tools like get_history or get_wallet_status. Slightly short of perfect guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.