Skip to main content
Glama

generate_test_ach_file

Generate balanced synthetic ACH files with configurable batches, SEC codes, and optional error injection for local testing. Use it to create deterministic test data without bank transmission.

Instructions

Generate a balanced synthetic ACH file for testing, never transmission.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seedNo
batchesNo
sec_codeNoPPD
inject_errorsNo
service_classNo
effective_dateNo
include_addendaNo
include_prenotesNo
addenda_per_entryNo
entries_per_batchNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the behavioral burden. It usefully discloses that the output is synthetic, balanced, and must never be transmitted, but it does not explain file generation side effects, permissions, or whether the result is written to disk versus returned as content.

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 a single front-loaded sentence with no wasted words. It communicates the core action and a critical safety constraint immediately.

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?

With 10 parameters, no annotations, and no parameter descriptions in the schema, the definition is substantially incomplete for correct invocation. The output schema covers return values, but the description does not compensate for the missing parameter semantics or behavioral details needed to use a complex generator properly.

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

Parameters1/5

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

The tool has 10 parameters with 0% schema description coverage, yet the description mentions none of them. It provides no meaning for seed, batches, sec_code, inject_errors, service_class, or any other parameter, leaving the agent entirely dependent on bare schema titles.

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 states a specific verb and resource: generate an ACH file. It also qualifies the output as 'balanced synthetic' and 'for testing, never transmission,' which clearly distinguishes it from sibling tools like validate_ach_file, parse_ach_file, and summarize_ach_file.

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?

The phrase 'for testing, never transmission' gives clear context for when to use the tool and an explicit prohibition on using it for real transmission. It does not name alternative tools for other ACH-related tasks, but the usage boundary is otherwise clear.

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