Skip to main content
Glama
WirterNow

AI Agent Bank MCP Server

by WirterNow

get_balance

Retrieve an agent's on-chain token balances for USDC, WMATIC, WETH, and MATIC without requiring an API key.

Instructions

Get an agent's on-chain token balances (USDC, WMATIC, WETH, MATIC). No api_key required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYesUUID of the agent

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It correctly implies a read operation via 'Get', and the note about no API key is helpful. However, it does not disclose potential side effects (unlikely), rate limits, or data freshness, which would strengthen transparency.

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?

The description is extremely concise: one sentence stating the action and a second brief note. Every word adds value, and the key information is front-loaded.

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

Completeness3/5

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

For a simple tool with one parameter and no output schema, the description covers the basics: what it does, which tokens, and authentication. However, it does not describe the response format or any example, which would improve completeness.

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?

Schema description coverage is 100% (agent_id is described as 'UUID of the agent'), so the description adds no additional meaning beyond the schema. Baseline score of 3 is appropriate.

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

Purpose4/5

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

The description clearly states the action (Get), the resource (an agent's on-chain token balances), and specifies the tokens (USDC, WMATIC, WETH, MATIC). It effectively distinguishes from siblings like get_cc_balance by focusing on on-chain tokens.

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 provides a clear context for use (querying on-chain token balances) and a notable guideline (no API key required). However, it does not explicitly state when not to use this tool or contrast it with alternatives such as portfolio_summary or get_cc_balance.

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