Skip to main content
Glama
zackscriven

lemma-banking-mcp

by zackscriven

lemma_get_ach_transfer

Retrieve an outbound ACH transfer by its ID to check its current status, including pending, submitted, settled, returned, canceled, or rejected.

Instructions

Get one outbound ACH transfer by ID (status: pending/submitted/settled/returned/canceled/rejected).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ach_transfer_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It clearly signals a read operation via 'Get', indicates a single-object result via 'one', and discloses the possible transfer statuses (pending/submitted/settled/returned/canceled/rejected), which is useful context beyond the tool name.

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 efficient sentence communicates the action, resource, lookup key, and relevant statuses. Every element earns its place with no filler.

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?

For a simple get-by-ID tool with one parameter and no output schema, the description covers the essential invocation context. The status list enriches the expected result context, though it does not specify the full return structure or error behavior, which would be useful but not critical.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It only says 'by ID', which adds little meaning beyond the parameter name ach_transfer_id. It does not describe the ID format, where to find it, or any constraints on the value.

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 uses a specific verb ('Get') and resource ('one outbound ACH transfer by ID'), immediately distinguishing it from siblings like lemma_get_inbound_ach_transfer. The status list adds further precision about what the tool handles.

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 phrase 'by ID' implies this tool is for fetching a single transfer when an ID is known, and the 'outbound' qualifier distinguishes it from inbound-transfer siblings. However, there is no explicit guidance about when to prefer this over related tools such as lemma_get_transaction or lemma_list_inbound_ach_transfers.

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