Skip to main content
Glama
WirterNow

AI Agent Bank MCP Server

by WirterNow

get_transaction_history

Fetch an agent's complete activity history across transfers, jobs, and loans with pagination support. No API key required.

Instructions

Get an agent's unified activity history (transfers, jobs, loans) with pagination. No api_key required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 20, max 100)
offsetNoOffset for pagination (default 0)
agent_idYesUUID of the agent

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations provided, so description must carry full burden. It mentions pagination but lacks details on error handling, rate limits, data freshness, or what happens with invalid agent_id.

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?

Two sentences, front-loaded with purpose. No wasted words, efficient and clear.

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

Completeness2/5

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

For a tool with 3 parameters and no output schema, description is minimal. Does not explain return values, error handling, or scope of 'unified activity', leaving gaps for an agent to use it correctly.

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 coverage is 100%, so baseline is 3. Description adds 'with pagination' which aligns with limit/offset parameters, but does not provide additional parameter semantics beyond what schema already offers.

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?

Clearly states it retrieves unified activity history (transfers, jobs, loans) with pagination for an agent. It is specific but does not explicitly differentiate from sibling tools like transfer_cc or get_balance.

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

Usage Guidelines2/5

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

Only mentions 'No api_key required' which is a permission note, but no guidance on when to use this tool versus alternatives like get_balance or get_cc_history.

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