Skip to main content
Glama

Confirm payment or retrieve a service report

check_service_order

Check a private service order by its svc_ ticket. With paymentTx and paymentOffer, atomically confirms exactly one matching Base payment and moves the order into review. Without payment fields, returns current status; once complete, it returns the private Markdown report and SHA-256 digest. Keep the ticket and signed offer private.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticketYesPrivate bearer ticket returned once by order_service.
paymentTxNoBase Pay UserOperation hash for USDC or mined Base transaction hash for ETH. Omit after payment is confirmed.
paymentOfferNoMatching private signed offer returned by order_service. Omit after payment is confirmed.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
specNo
statusNo
receiptNoMachine-readable receipt derived by KnownFix after signed-offer and Base proof verification; never accepted from caller input.
serviceNo
reportSha256No
reportMarkdownNo

TDQS

A4.6/5.0
Behavior4/5

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

Annotations mark this as non-read-only and non-idempotent, and the description aligns by revealing that payment confirmation is atomic, targets exactly one matching Base payment, and transitions the order into review. It also discloses the privacy requirement for ticket and signed offer, adding useful context beyond the minimal annotation set.

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?

Three sentences cover mode selection, state transition, return behavior, and security guidance with no filler. Critical usage conditions are front-loaded, and every clause adds distinct information.

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?

The description covers the main modes, the state-changing effect, return outcomes, and privacy expectations. It is slightly ambiguous about what happens when only one of paymentTx or paymentOffer is provided, since the described alternatives are 'with both' and 'without payment fields', but this is a minor edge case for an otherwise strong definition.

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

Parameters4/5

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

Schema coverage is already 100%, so the baseline is 3. The description adds meaning by explaining the combined effect of paymentTx and paymentOffer, the 'exactly one matching' constraint, and the resulting review state, which is not fully captured by individual parameter descriptions.

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 action ('Check a private service order by its svc_ ticket') and clearly differentiates two behaviors: confirming payment and retrieving status/report. It distinguishes this tool from siblings like check_request and check_submission by focusing on service orders and the svc_ ticket.

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

Usage Guidelines5/5

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

The description explicitly explains when to include paymentTx and paymentOffer (to confirm and move to review) and when to omit them (to fetch status/report). It also gives lifecycle guidance with 'once complete', making invocation conditions unambiguous.

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.4/5.0
Disambiguation4/5

Most tools target clearly distinct resources or actions, and cross-references like 'use get_fix instead' sharply reduce confusion. A minor source of ambiguity is the cluster of redemption/offer tools (get_fix, get_skill, get_offer) and the three status-check tools, but their descriptions disambiguate them well.

Naming Consistency5/5

All tools follow a consistent lowercase snake_case verb_noun pattern: audit_, check_, get_, list_, order_, request_, search_, submit_. The naming style is uniform and predictable across different domains.

Tool Count4/5

At 17 tools, the surface is slightly above the ideal 3-15 range but remains justified given the server's broad scope: catalog browsing, paid redemption, audits, services, requests, submissions, and checkout support. It is dense but not bloated.

Completeness4/5

The lifecycle coverage is strong: discover, get, request, submit, check status, order, pay, and redeem are all represented. Minor gaps exist, such as no cancellation/refund path, no way to update a submitted fix, and merch ordering delegated entirely to an external storefront.