Skip to main content
Glama

bestellung_status

Status einer eigenen Bestellung, inkl. Sendungsnummer nach Versand.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
order_idYes
client_idNo
client_secretNo

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It reveals that the order must be one's own ('eigene Bestellung') and that tracking numbers appear only after shipping, but it omits authentication requirements, error behavior, and any effects of client_id/client_secret.

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, compact sentence with no wasted words. It front-loads the core function and adds one relevant detail (tracking number), though it largely mirrors the tool name.

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?

For a tool with three parameters, no annotations, and no output schema, this description is insufficiently complete. It does not explain the required order_id format, the role of client_id/client_secret, or any auth prerequisite, so an agent cannot reliably construct a valid call.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, yet the description makes no mention of any parameters. An agent is left with only the schema's field names (order_id, client_id, client_secret), which may be self-explanatory but lack the context the description should provide.

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 the tool's function: it retrieves the status of one's own order, including tracking number after shipping. This distinguishes it from siblings like bestellung_aufgeben (place order) and angebot_einholen (get quote), though it lacks an explicit verb.

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?

The description provides no guidance on when to use this tool versus alternatives. There is no mention of exclusions or conditions, leaving the agent to infer usage from the tool's name.

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

B3.4/5.0
Disambiguation5/5

All six tools map to distinct steps in the purchasing workflow: searching, product details, quoting, ordering, order status, and purchase terms. No two tools compete for the same task, and the object/action pairs such as quote/order and status/tracking are clearly separable.

Naming Consistency4/5

Tools consistently use lowercase German words with underscores, but the grammatical pattern varies: actions such as angebot_einholen and bestellung_aufgeben use object+verb, while informational tools like produkt_details and bestellung_status are noun+noun compounds. Despite these minor deviations, the naming remains readable and functional.

Tool Count5/5

Six tools is a well-scoped size for a shop API: enough to cover a buyer's core journey without redundancy or excessive granularity. Each tool clearly earns its place in the workflow.

Completeness5/5

The endpoints cover the end-to-end order lifecycle: product search and details, binding quote, order placement, order tracking, and terms of purchase. There are no obvious missing operations that would prevent an agent from completing a B2B purchase.

Resources