Skip to main content
Glama

AirShelf Catalog

Request a quote from a merchant

request_quote
Destructive

Send a quote request for catalog products to a merchant's sales team on behalf of a named buyer.

This is a two-step, double opt-in flow. The first call emails a confirmation link to contact.email and returns status "confirmation_required"; no lead exists and no merchant is contacted until the buyer confirms. A later call with the same arguments reports "awaiting_confirmation" while the email is unconfirmed, or "received" with a reference_number after confirmation.

Merchant slugs come from list_merchants. Network-catalog brands that are absent from that list use merchant:"airshelf-network" with brandSlug:""; AirShelf routes the confirmed request to that brand.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNoAny extra context from the buyer
contactYesBuyer contact details
merchantYesMerchant slug or id (from list_merchants), or "airshelf-network" for network-catalog brands
productsYesCatalog slugs the buyer is interested in
quantityNoUnits the buyer wants
brandSlugNoManufacturer slug (from search results) — required with merchant:"airshelf-network" so the lead reaches the right brand

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNo
next_stepNo
reference_numberNo

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already indicate mutation/destructive/external effects, but the description goes far beyond: it details the double opt-in flow, states that no lead exists and no merchant is contacted until confirmation, explains the statuses returned ('confirmation_required', 'awaiting_confirmation', 'received'), and clarifies that a later call with the same arguments is required. This rich behavioral context is essential for correct invocation and is not contradicted by annotations.

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 four sentences, each earning its place: purpose first, then the critical two-step flow, then merchant routing. No filler, front-loaded with the core action, and structured logically. It is concise yet comprehensive.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (multi-step, double opt-in, special routing case) and the existence of an output schema, the description covers all operational details: the status flow, the need for a second call, and the merchant routing rules. Nothing an agent needs to call it correctly is missing, and the output schema presumably covers return format.

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

Parameters4/5

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

The input schema has 100% parameter description coverage, so baseline is 3. The description adds meaningful context for the 'merchant' parameter (source via list_merchants, and the special 'airshelf-network' plus brandSlug combination) and clarifies that products are catalog slugs. This extra guidance for two parameters raises the score above baseline.

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 states a specific verb+resource: 'Send a quote request for catalog products to a merchant's sales team on behalf of a named buyer.' This clearly distinguishes it from sibling tools like search_catalog or list_merchants, which are about discovery, not requests. The special 'airshelf-network' routing clause further sharpens the 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?

It gives clear actionable guidance: merchant slugs come from list_merchants, and explains the fallback mechanism for network-catalog brands. It also describes the two-step double opt-in flow, telling the agent what to expect on first call vs subsequent calls. It does not explicitly mention when not to use this tool or name alternatives, but the sibling set has no overlapping tool, so this is adequate.

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.1/5.0
Disambiguation2/5

The set contains at least two genuinely confusable pairs: find_products vs research_shopping (explicitly cross-referencing each other in their own descriptions, with near-synonymous purposes of discovering products), and get_product vs explain_product vs compare_products, all of which return product records with prices and specs. The descriptions go to great lengths to disambiguate, which flags the very real boundary problem — an agent would struggle to pick correctly without reading thousands of characters.

Naming Consistency4/5

All eight names follow a clear verb_noun snake_case pattern (compare_products, get_product, search_catalog, request_quote, research_shopping). Minor deviations: singular/plural inconsistency across pairs (get_product vs compare_products), and research_shopping reads as a noun phrase rather than verb+object. Otherwise, predictable and clean.

Tool Count5/5

Eight tools is right in the sweet spot for a research/quoting workflow, and each earns its place: search, find, get, compare, explain, merchants, quote, and the heavy research job. The surface is neither bloated with near-duplicate operations nor so thin that the server feels like a stub.

Completeness4/5

The buyer-to-quote lifecycle is covered end to end: discovery (search_catalog, find_products), deep verification (get_product, explain_product, tier3 live lookup), comparison, merchant lookup, and a double opt-in request_quote flow that closes the loop. Minor gaps: no way to list prior quotes placed or track a quote's status after the initial response, and no explicit search-catalog pagination control, but agents can work around these.

Resources