Skip to main content
Glama

get_order_status

Check an order you placed. Provide the orderId and orderKey returned by submit_payment. Returns the fulfilment status: paid, provisioning, live, or cancelled.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orderIdYes
orderKeyYes

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden. It states it is a 'check' operation (non-destructive) and specifies the return values. Though it doesn't explicitly declare it's read-only, the verb and context make it clear.

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 no wasted words. It front-loads the purpose and immediately follows with instructions and return values.

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?

For a simple status-check tool with two parameters and no output schema, the description covers the prerequisite (submit_payment), required inputs, and possible statuses. It is sufficient and doesn't leave major gaps.

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?

The schema has 0% description coverage, so the description must compensate. It adds meaningful context by stating the parameters are from submit_payment, but does not provide any additional constraints or examples about their format or length.

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 uses a specific verb ('Check') and resource ('an order you placed'), clearly distinguishing it from siblings like submit_payment (which creates orders) and get_catalog (which lists products). It explicitly states what it does.

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?

It tells when to use this tool: after submit_payment, using the returned orderId and orderKey. It also lists the possible return statuses. While it doesn't explicitly mention when not to use it, the context is clear and appropriate for a simple status check.

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.3/5.0
Disambiguation5/5

Each tool has a distinct role: browsing catalog, initiating purchase with challenge, submitting payment, and checking order status. No overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (create, get, submit) with clear nouns (purchase_challenge, catalog, order_status, payment).

Tool Count5/5

With 4 tools, the set is minimal and focused, exactly covering the purchase workflow without excess or insufficiency.

Completeness5/5

The tools cover the full purchase lifecycle: viewing catalog, creating a challenge, submitting payment, and tracking order status. No missing steps.

Resources