Skip to main content
Glama
cmssy-io

@cmssy/mcp-server

Official
by cmssy-io

transition_order_fulfillment

Update an order's fulfillment status (unfulfilled, partially fulfilled, fulfilled, returned) and optionally attach tracking details when marking fulfilled, only after user confirmation.

Instructions

Move an order to a new fulfillment status. Optionally attach tracking when marking fulfilled. Only call after the user confirms.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNo
orderIdNo
trackingNumberNo
trackingCarrierNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.73.1

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does reveal that the operation mutates fulfillment status and that tracking can optionally be attached when marking fulfilled, which is useful. But it does not disclose side effects, reversibility, required permissions, or whether tracking is ignored for non-fulfilled statuses.

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 three short sentences with no filler or repetition. It leads with the core action, adds an optional behavior, and ends with a critical user-confirmation caveat, so every sentence earns its place.

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?

Given no annotations, no output schema, and four parameters with zero schema-description coverage, this description is not complete enough for safe invocation. It leaves requiredness ambiguous, does not explain allowed transitions among the status enum, and does not guide the agent away from overlapping order-related tools.

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 0%, so the description must compensate for parameter meaning. It only links trackingNumber/trackingCarrier to the fulfilled status; it does not clarify orderId semantics or the status enum values. It also fails to note that orderId is logically required even though the schema lists no required parameters.

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?

The description uses a clear verb-object structure: 'Move an order to a new fulfillment status.' This identifies both the action and the domain, and is distinct enough from payment, cancellation, or pipeline-stage operations among the siblings. It doesn't explicitly contrast with set_order_pipeline_stage, but the fulfillment-status scope is specific.

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

Usage Guidelines3/5

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

The description gives one clear usage prerequisite: 'Only call after the user confirms.' However, it does not explain when to prefer this tool over alternatives like edit_order or set_order_pipeline_stage, nor does it state any exclusions or context where the tool should not be used.

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