Skip to main content
Glama

quote_order

Quote an order before creation. Use this to show the user final price, discounts, and payable amount.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orderNoNoExisting order number when requoting.
skuCodeYesSelected SKU code.
urlNameNoProduct URL name.
couponIdNoOptional user coupon ID.
skuCountNoQuantity.
couponCodeNoOptional coupon code.
ipCurrencyNoOptional detected local currency.
productCodeYesManaBuy product code.
promotionCodeNoOptional promotion code.

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It fails to state whether the quote operation has side effects, requires authentication, or is reversible. The term 'quote' hints at a non-mutating action, but this is not explicitly confirmed, leaving the agent uncertain about side effects.

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, front-loaded with the primary purpose, and contains no filler. Every word contributes to understanding the tool's function.

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?

With no output schema and no annotations, the description should cover expected return values and edge cases. It mentions final price, discounts, and payable amount vaguely, but does not explain requoting via orderNo, handling of optional parameters, or any response structure. The tool has 9 parameters, so more detail is needed for complete context.

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 description coverage is 100% (all 9 parameters have descriptions), so baseline is 3. The description adds no extra parameter-specific meaning beyond what the schema already provides; it only mentions the overall pricing purpose, which does not significantly enhance parameter understanding.

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 clearly states the tool's purpose: 'Quote an order before creation' identifies the verb (quote) and resource (order) while distinguishing it from sibling create_order. The phrase 'show the user final price, discounts, and payable amount' further clarifies its scope.

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?

The description provides context on when to use the tool ('before creation', 'show the user final price') but does not explicitly name alternatives or exclusions. It implies use for pre-purchase quoting rather than order creation, which is clear but lacks an explicit 'use create_order instead' pointer.

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

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct action or resource: auth (login/logout/status), product discovery (search/detail), ordering (quote/create/status/detail). There is no functional overlap that would cause an agent to select the wrong tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case, such as search_products, create_order, get_login_status. Even login_manabuy and logout_manabuy fit the pattern with the domain as the object.

Tool Count5/5

With 9 tools, the server is well-scoped for the ManaBuy ordering domain. Each tool covers a necessary step in the workflow without redundancy or bloat.

Completeness4/5

The set covers product discovery, quoting, order creation, order status/detail tracking, and session management. A notable gap is the lack of a cancel order or list orders capability, but the core purchasing flow is complete.

Resources