Skip to main content
Glama

Conduit Agentic Commerce

Update order status

order_update_status

Agent manual correction or degraded handoff recovery. note required except cancelled. Owning agent_id required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoRequired note except when status=CANCELLED
statusYesNew status, e.g. PENDING, CONFIRMED, SHIPPED, DELIVERED, CANCELLED
carrierNoCarrier name when attaching tracking
agent_idYesOwning agent id (required for authorization)
order_idYesOrder id to update
search_idNoOptional search_id for analytics correlation
tracking_idNoCarrier tracking id when recovering handoff
session_tokenNoSession token from agent_authenticate — required whenever agent_id is passed
handoff_endpointNoMerchant handoff/status endpoint URL for poll recovery
external_checkout_idNoMerchant checkout id to recover degraded handoff polling

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
hintNo
nextNo
errorNo
detailNo
statusNo
carrierNo
order_idNo
quantityNo
tracking_idNo
continue_urlNo
handoff_endpointNo
merchant_observedNo
agent_status_lockedNo
external_checkout_idNo

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already mark the operation as non-read-only and non-idempotent, so the description only needs to add context. It adds the ownership/authorization requirement and the cancellation note exception, but does not describe side effects, status transition constraints, or recovery behavior beyond the label.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Brief, front-loaded purpose, and no filler. The constraint fragments are redundant with the schema but are short and emphasize key requirements.

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?

Rich schema and output schema compensate for the terse description. However, with 10 parameters and multiple handoff-recovery fields, the description does not explain how the recovery scenario maps to carrier, tracking_id, handoff_endpoint, or external_checkout_id, leaving a moderate selection gap for an agent.

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?

Input schema covers 100% of parameters with descriptions. The description's note and agent_id statements are redundant with schema descriptions and add no new meaning beyond emphasizing those constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Title and description establish a status-mutation tool for order management. 'Agent manual correction or degraded handoff recovery' adds two concrete contexts and, alongside sibling names like order_track and order_list, implies a write operation, though it never explicitly names the resource or distinguishes from order_execute.

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 clearly states when to use it: for manual correction and degraded handoff recovery. It does not explicitly state exclusions or alternatives, but the context is enough to route an agent away from read-only siblings and order_execute.

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

A3.9/5.0
Disambiguation4/5

Most tools map to a distinct resource/action, and the descriptions explicitly call out boundaries (e.g., agent_notify targets Hub users while agent_outreach targets external addresses). A few closely related pairs such as supply_delivery/supply_details and order_events/order_track could still cause misselection despite the clarifying notes.

Naming Consistency4/5

Tool names follow a clear lowercase snake_case resource-prefix pattern across agent_, order_, payment_, and supply_. The pattern is not perfectly uniform because some names are noun-only (agent_organization, payment_methods, supply_details) and order_update_status is a longer compound.

Tool Count4/5

At 19 tools, the set is slightly above the ideal range, but the count is justified by four distinct subdomains: agent identity/communication, orders, payments, and supply. No obvious filler tools are present.

Completeness4/5

The surface covers the main commerce workflow well: agent setup/auth, search and delivery probes, order execution/tracking/feedback/disputes, and payment mandates/methods. Minor gaps like no agent deletion, no payment-method disable, and no standalone order-detail tool are workable or arguably out of scope.

Resources