Skip to main content
Glama

start_lc_audit

Start a UCP600/ISBP letter-of-credit / trade-document discrepancy audit over a set of documents. Returns a job_id; then call get_lc_audit_result to poll. Decision support, not a guarantee of bank acceptance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rulesetNoomit for the default 39-rule trade-payment set; 'lc-presentation' = 29-rule UCP600/ISBP L/C presentation check
documentsYes1-12 documents

TDQS

A4/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 burden. It discloses the async nature (returns job_id) and the audit's advisory role (decision support). However, it lacks details on safety, auth requirements, rate limits, or error behavior, which would be expected for a mutation-like tool.

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: three sentences, front-loading the core purpose and return value, then adding a disclaimer. No superfluous words.

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 the tool's async nature and lack of output schema, the description satisfactorily explains the workflow (start, poll) and provides a disclaimer. It could mention timeouts or failure modes, but the essentials are covered.

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 the baseline is 3. The description adds minor context (e.g., '29-rule UCP600/ISBP' for the ruleset enum and '1-12 documents' hint), but it does not significantly enhance understanding beyond the schema.

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 clearly states it starts a UCP600/ISBP letter-of-credit/trade-document discrepancy audit over documents. It distinguishes itself from the sibling tool 'get_lc_audit_result' by specifying it returns a job_id and polling is required, leaving no ambiguity.

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 description provides a clear workflow: call this to start an audit, then poll with get_lc_audit_result. It includes a disclaimer that it is decision support, not a guarantee. However, it does not explicitly state when not to use it or compare with alternatives (other than the implicit polling step).

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.

TDQS

A4.2/5.0
Disambiguation5/5

The two tools have clearly distinct purposes: one starts an audit and returns a job_id, the other polls for results. No ambiguity or overlap.

Naming Consistency5/5

Both tool names follow the verb_noun pattern with snake_case (start_lc_audit, get_lc_audit_result), providing a predictable and consistent naming convention.

Tool Count5/5

With only two tools, the server is well-scoped for its purpose: initiating an audit and retrieving results. The count reflects a focused workflow without unnecessary tools.

Completeness4/5

The tool surface covers the core audit lifecycle (start and poll). A minor gap is the lack of a cancel or list audits tool, but this is acceptable for a minimal service.

Resources