Skip to main content
Glama

shopify_get_orders

List Shopify orders by any/open/closed/cancelled status to track and manage order workflows.

Instructions

List Shopify orders (any/open/closed/cancelled)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
statusNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the burden of behavioral disclosure, but it only says 'List', implying a read operation. It does not state pagination, default limit/status behavior, response shape, or whether any statuses are mutually exclusive.

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?

The description is a single efficient sentence with the key resource and status options front-loaded. It is concise to the point of being terse, but avoids redundancy.

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?

The tool has two parameters, no annotations, and no output schema; the description is too minimal to fully guide invocation. An agent would still need to infer status handling, limit semantics, pagination, and return format.

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 both parameters. It adds possible status values (any/open/closed/cancelled) for the status parameter, but says nothing about the limit parameter or its default/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?

The description states a clear action ('List') and resource ('Shopify orders'), with a parenthetical of status scopes. It is arguably set apart from the singular sibling shopify_get_order by pluralization, but it does not explicitly name or contrast that alternative.

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

Usage Guidelines2/5

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

No when-to-use guidance is given, nor are alternatives or exclusions mentioned. The status parenthetical hints at filtering but does not explain when to choose this over shopify_get_order or fulfill_shopify_order.

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