Skip to main content
Glama

Check order status

order_status
Read-onlyIdempotent

Look up the user's recent orders (or one by number) and their fulfilment status. Args: number?, limit? (default 5).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax orders to return (default 5, max 20).
numberNoExact order number to look up; omit for the most recent orders.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoPresent when the account has no email on file.
ordersNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • addedInput schema / properties / limit / description
      Added value: +"Max orders to return (default 5, max 20)."
    • addedInput schema / properties / number / description
      Added value: +"Exact order number to look up; omit for the most recent orders."
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "note": {
      +      "description": "Present when the account has no email on file.",
      +      "type": "string"
      +    },
      +    "orders": {
      +      "items": {
      +        "properties": {
      +          "created_at": {
      +            "description": "ISO 8601 timestamp.",
      +            "type": "string"
      +          },
      +          "currency": {
      +            "type": "string"
      +          },
      +          "number": {
      +            "type": "string"
      +          },
      +          "status": {
      +            "type": "string"
      +          },
      +          "total": {
      +            "type": "number"
      +          },
      +          "url": {
      +            "description": "Order tracking page.",
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate read-only and idempotent; description adds that it returns fulfilment status and default limit, enhancing understanding without contradiction.

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?

Single sentence plus argument list, no fluff, all content earns its place.

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?

Adequate for a 2-param tool with output schema; mentions fulfilment status and default limit, though could note that it is safe/read-only (already in annotations).

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% with descriptions for both parameters. Description restates limit default and number optionality but adds no new meaning beyond 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?

Clearly states verb 'look up' and resource 'user's recent orders' with 'fulfilment status'. Distinguishes from sibling tools that deal with cart, promo, designs, etc.

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?

Implies usage for checking order status but lacks explicit guidance on when not to use or alternatives like get_order_preview.

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.

Resources