Skip to main content
Glama

Verify payment and release a QA report

venture_foundry_settle_checkout
Idempotent

Verify an already-submitted Base transaction against the prepared exact-payment boundary and release its report. This tool cannot create or repeat a wallet transfer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobIdYes
reportTokenYesSecret report token returned by prepare_checkout. Never disclose it outside the paying workflow.
transactionYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description adds valuable context by stating that no wallet transfer is created or repeated, and that it operates on an already-submitted transaction against a boundary. It does not disclose failure modes or detailed side effects, but the added constraint is meaningful.

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 two sentences with the main action front-loaded ('Verify an already-submitted Base transaction...'). The second sentence states a critical limitation concisely. No fluff or redundant information.

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?

The description provides a clear high-level operation but does not specify the return value/output, error handling, or how the released report is delivered (e.g., whether get_report is needed afterward). With no output schema, this leaves ambiguity. It also assumes knowledge of 'prepared exact-payment boundary' without further explanation.

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 only 33% because only reportToken has a description; jobId and transaction are described only via patterns. The description does not explain jobId or the format/role of transaction beyond calling it a Base transaction, and it does not compensate for the low schema coverage. The reference to the 'prepared exact-payment boundary' adds a bit of context to transaction, but it is not enough.

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 the tool verifies an already-submitted Base transaction against the prepared exact-payment boundary and releases its report. It also explicitly says it cannot create or repeat a wallet transfer, which distinguishes it from siblings like prepare_checkout and create_quote.

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 implies usage after prepare_checkout by referencing an 'already-submitted' Base transaction and a 'prepared exact-payment boundary,' and the schema's reportToken description mentions prepare_checkout. It also states a key exclusion: it cannot create or repeat a wallet transfer. However, it does not explicitly name sibling tools or state when to use get_report afterward.

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

Each tool represents a distinct step in the payment-gated report workflow. No two tools overlap; even the two report-related tools are separated by payment status and described unambiguously.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (create_quote, get_report, prepare_checkout, settle_checkout), but 'service_info' breaks the pattern with a noun-noun construction.

Tool Count5/5

With five tools, the server is appropriately scoped for its purpose; each tool is necessary for the quote-to-report lifecycle and there are no redundant utilities.

Completeness4/5

The core lifecycle is well-covered (info, quote, checkout, settlement, retrieval). The only minor gap is no explicit cancellation or update tool, but that doesn't hinder the primary workflow.

Resources