Skip to main content
Glama

Anyway Possible Agent Utilities

Base Wallet Balance ($0.001 USDC)

base_balance
Read-only

Read native ETH and Circle USDC balances plus current block height for a Base wallet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesBase wallet address whose native ETH and Circle USDC balances should be read.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
ethYes
usdcYes
addressYes
chainIdYes
networkYes
ethAtomicYes
observedAtYes
usdcAtomicYes
blockNumberYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / address / description
      Added value: +"Base wallet address whose native ETH and Circle USDC balances should be read."
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "address": {
      +      "type": "string"
      +    },
      +    "blockNumber": {
      +      "type": "integer"
      +    },
      +    "chainId": {
      +      "type": "integer"
      +    },
      +    "eth": {
      +      "type": "string"
      +    },
      +    "ethAtomic": {
      +      "type": "string"
      +    },
      +    "network": {
      +      "type": "string"
      +    },
      +    "observedAt": {
      +      "type": "string"
      +    },
      +    "usdc": {
      +      "type": "string"
      +    },
      +    "usdcAtomic": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "address",
      +    "network",
      +    "chainId",
      +    "eth",
      +    "usdc",
      +    "ethAtomic",
      +    "usdcAtomic",
      +    "blockNumber",
      +    "observedAt"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already mark readOnlyHint and destructiveHint false, but the description adds useful behavioral context: it reads three data points (ETH, USDC, and block height, indicating it fetches a snapshot of current on-chain state). This enriches the definition without contradicting the annotations.

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

Conciseness5/5

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

A single sentence with zero fluff. It front-loads the core verb (Read) and lists resources directly. Every word contributes to clarifying what part and what data is involved.

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

Completeness4/5

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

Given that the tool presumably has an output schema (present) and safety-related annotations, the description sufficiently covers selection and invocation context. It does not mention a possible usage fee hinted by the title, but it is not a functional block for a light read filter. The coverage of block height indicates awareness of the important state context.

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

Parameters3/5

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

The only parameter, address, has 100% schema coverage including pattern and description, so the tool description adds no new semantics beyond what is already in the schema. Baseline 3 applies because the schema already fully documents the input.

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?

Clearly identifies the operation with specific verb 'Read' and states exact resources: native ETH, Circle USDC balances, and current block height for a Base wallet. This is unambiguously distinct from its siblings, which all stay in URL/merchant/payment domains.

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

Usage Guidelines3/5

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

The description implies use when you need Base wallet balances, but it does not explicitly say when-to-use or provide when-not-to-use guidance. There are no obvious alternatives among siblings, so the absence of exclusions is acceptable, but the lack of explicit guidance leaves it at baseline.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.