AirShelf Catalog
Server Details
Cross-vendor B2B catalog for AI agents: search, compare, find equivalents, request a quote.
- Status
- Healthy
- Uptime
- 99.9% over 41 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 8 tools
Most tools are clearly distinct (get_product, compare_products, explain_product, list_merchants, request_quote), but search_catalog, find_products, and research_shopping all accept natural-language product needs and return product matches. The descriptions explicitly separate quick discovery from full research and general catalog search, so an agent can disambiguate with effort, but misselection is plausible.
All eight tools follow a consistent snake_case verb_noun pattern: compare_products, explain_product, find_products, get_product, list_merchants, request_quote, research_shopping, search_catalog. Singular versus plural objects reflects natural cardinality and does not create confusion.
Eight tools is well-scoped for a catalog and quote service: search/discovery, product detail, comparison, evidence explanation, merchant listing, and quote request each have a home. The discovery trio adds some redundancy, but the set as a whole is neither bloated nor thin.
The surface covers the full buyer workflow: discover products, inspect verified golden records, compare candidates, verify evidence provenance, identify merchants, and request quotes. There are no obvious dead ends for the stated catalog and quote purpose.
Available Tools
8 toolscompare_productsCompare productsARead-onlyInspect
Compare 2-10 catalog products side-by-side on their datasheet specs. Slugs come from search_catalog and are case-insensitive and dash-tolerant ("e-STUDIO 331AC", "toshiba-e-studio-331ac" and "e-studio331ac" all resolve to the same product).
Returns one item per product with canonical_name and spec_absence_note (spec fields absent from that product's golden record, AirShelf's verified product record). Branch on each item's commercial_data.actionable before using price or stock; stale observations are withheld from action fields. A slug that does not resolve comes back as not_found with a did_you_mean suggestion. The provenance option adds the source page and source type already stored with each fact.
| Name | Required | Description | Default |
|---|---|---|---|
| slugs | Yes | Catalog slugs to compare | |
| provenance | No | Include the stored source page and source type for each fact |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | No | |
| items | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description reveals important behaviors beyond the readOnlyHint: slug normalization with examples, the branch on commercial_data.actionable before using price/stock, staleness handling, and not_found response with did_you_mean. This gives the agent actionable behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but efficient: it leads with the primary purpose, then covers slug acceptance, output shape, actionability, error behavior, and security bonus in focused sentences. No filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given an output schema exists and annotations already declare read-only, the description still meaningfully covers the remaining context an agent needs: slug format rules, pricing/staleness caveats, not_found behavior, and provenance semantics. It is arguably complete for correct invocation and result use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers both parameters at 100%, so baseline is 3. The description adds value by explaining slug case-insensitivity and dash-tolerance with concrete examples, plus the provenance behavior, which enriches the parametric meaning beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific action and scope: "Compare 2-10 catalog products side-by-side on their datasheet specs." This clearly identifies the tool as a multi-product comparison and distinguishes it from siblings like get_product and explain_product.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives clear context by stating slugs come from search_catalog and that the tool handles 2-10 products. It stops short of explicitly saying when not to use this tool versus alternatives, such as when a single product comparison is needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
explain_productExplain how a record was builtARead-onlyInspect
Explain the evidence behind a catalog row. Returns stored processing stages when available and always returns a golden-record field summary with source coverage. A field's evidence_sha256 is the SHA-256 of the source document AirShelf archived when it extracted that claim. A caller holding the same bytes can compare the hash to check that the cited document has not changed. AirShelf does not serve those archived bytes, and the hash does not promise they remain retrievable. record.scraped_at is the catalog row's scrape time, not a per-claim evidence capture time.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Composite slug to explain |
Output Schema
| Name | Required | Description |
|---|---|---|
| sku | No | |
| note | No | |
| slug | No | |
| count | No | |
| trace | No | |
| record | No | |
| category | No | |
| trace_status | No | |
| canonical_name | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint and destructiveHint annotations, the description discloses the meaning of evidence_sha256, clarifies that AirShelf does not serve archived bytes, and distinguishes record.scraped_at from per-claim capture time. These are significant behavioral details that prevent misinterpretation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences, each adding a distinct piece of information: purpose, output, hash semantics, and timestamp clarification. It is front-loaded with the core purpose and avoids redundancy, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, the description does not need to list return fields, but it adds critical clarifications about hash usage and timestamp interpretation. It covers the key behavioral aspects thoroughly, though it omits potential error conditions, which is minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides a description for the single parameter slug ('Composite slug to explain'), so coverage is 100%. The description does not add further parameter-specific meaning beyond referring to the catalog row, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool explains the evidence behind a catalog row, and specifies it returns processing stages and a golden-record field summary with source coverage. This distinguishes it from sibling tools like get_product or compare_products, which focus on retrieval or comparison rather than provenance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when evidence or provenance is needed, but it does not explicitly compare with alternatives or state when not to use it. It gives context on what the tool returns, but no direct routing guidance, so it is adequate but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_productsDiscover and verify products for a needARead-onlyInspect
Discover candidate products for a buyer need. Takes a need in natural language (e.g. "best value home espresso machine", market "TH"), checks the verified catalog first, then uses live web discovery only when the catalog has no candidates. Returns up to 3 candidates with explicit fit accounting.
find_products is the quick candidate-list tool; research_shopping is the full verified-research job. For a specific brand+model, search_catalog is cheaper and returns the same live-lookup block on a miss.
Response fields: • candidates[].verification — "catalog-candidate" for a catalog starting point whose fit still needs checking, or "live-unverified" for a live page read during this run. • candidates[].status — "resolved" means both identity and the parsed buyer constraints were supported by the cited page; "abstain" means identity or need fit could not be established. Inspect constraint_check for matched, conflicting, and unverified requirements. • candidates[].constraint_check.receipts maps each receipt-backed matched requirement to its supporting source URL and trust label. • Candidates come from current web-search results, so they are a sample of what the market offers rather than a ranking. • status at the top level — "no_match" means discovery ran but no candidate was confirmed as satisfying the need; "disabled", "rate_limited", or "unavailable" means no discovery ran.
• live_discovery.status="unavailable" means receipted catalog candidates were returned while live discovery was unavailable.
Optional market (ISO 3166-1 alpha-2) biases discovery and marketplace checks toward seller pages serving that country and scopes the lookup cache. "Available in " means the seller page serves that market, not that stock is guaranteed.
| Name | Required | Description | Default |
|---|---|---|---|
| max | No | Max candidates to verify (each costs a live lookup; capped at 3). | |
| need | Yes | The buyer need in natural language, e.g. "quiet mechanical keyboard for open office" or "best value home espresso machine". | |
| market | No | Buyer market as ISO 3166-1 alpha-2 country code (e.g. "TH"). Biases discovery and marketplace checks toward seller pages serving that country and scopes the cache; availability is not a stock guarantee. |
Output Schema
| Name | Required | Description |
|---|---|---|
| need | No | |
| error | No | |
| market | No | |
| reason | No | |
| status | No | |
| took_ms | No | |
| guidance | No | |
| candidates | Yes | |
| verification | No | |
| live_discovery | No | |
| serp_considered | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Even with readOnlyHint and openWorldHint annotations, the description discloses additional behaviors: it prioritizes catalog over live discovery, explains statuses (top-level and per-candidate), clarifies that the list is a sample, and defines 'available' relative to market. It also describes cache scoping and the meaning of statuses like 'unavailable'. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is organized with bullet points and front-loads the core purpose. Every sentence adds value, distinguishing behavior, outcomes, and statuses. No redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (multiple statuses, fallback behavior, cache scoping), the description fully covers operational details: explains catalog-first strategy, live discovery fallback, result fields, and failure modes. The output schema likely covers return structure, but the description adds necessary context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 100% schema coverage, the description adds meaningful semantics: it explains how `market` biases discovery and scopes cache, and clarifies that availability is not a stock guarantee. It also elaborates on `need` with examples and the max of 3 candidates (implied). This goes beyond the schema's field descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states this tool 'List ALL candidates' and explicitly differentiates it from siblings: it is the 'quick candidate-list tool' while research_shopping is a 'full job' and search_catalog handles specific brand+model. The verb 'list' and resource 'candidates' are specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool versus alternatives: it is for natural-language needs, checks the catalog first, and only falls back to live discovery if necessary. It also directs users to search_catalog for specific models and to research_shopping for deeper research.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_productGet product detailsARead-onlyInspect
Get the full golden record (AirShelf's verified product record) and latest price for one catalog product by slug ("-").
Returns the product's specs and provenance (which page each fact came from), plus canonical_name (its exact catalog name). A field's evidence_sha256 is the SHA-256 of the source document AirShelf archived when it extracted that claim. A caller holding the same bytes can compare the hash to check that the cited document has not changed. AirShelf does not serve those archived bytes, and the hash does not promise they remain retrievable. Branch on commercial_data.actionable before using price or stock: observations older than 24 hours are withheld from latestPrice and retained only as labelled last_observed history. For quote-gated B2B pricing, a null price with a quote path is expected rather than an error. In clients that render MCP Apps the response also draws one product card per call. related_products — relationships extracted from vendor documents (e.g. compatible toner or drum accessories with their source quotes, functional equivalents, supersessions); each entry names the related catalog slug, the relation type, its direction (direction is "from_this" when the relation reads this-product → related-product, "to_this" when it reads related-product → this-product), and the source URL and quote the relation was extracted from.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Composite slug, e.g. toshiba-b-ex4t1-ts12-qm-r |
Output Schema
| Name | Required | Description |
|---|---|---|
| title | Yes | |
| action | Yes | |
| buyUrl | No | |
| product | No | |
| benefits | No | |
| imageUrl | No | |
| productId | Yes | |
| buttonLabel | Yes | |
| pricing_gated | No | |
| related_products | No | Documented related catalog products, including accessories, equivalents and replacements. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this as read-only, and the description goes well beyond them: it explains evidence_sha256 semantics, that AirShelf does not serve archived bytes, the commercial_data.actionable gate for price/stock, the expected null price for quote-gated B2B pricing, and related_products direction semantics. These are non-obvious behaviors an agent needs to interpret results correctly.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but well-structured: core purpose, return semantics, pricing caveats, and related_products are presented in logical order. Every sentence adds a distinct behavioral or interpretational point, though some sentences are dense and could be tightened.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers all essential behavioral caveats an agent needs: evidence hashes, source document availability, price actionability, quote-gated pricing, product card rendering, and relation direction. With an output schema present and annotations covering the safety profile, nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents slug with an example, and the description adds the composite format '<manufacturer>-<model>', which is useful semantic detail. With 100% schema coverage, the baseline is 3; the description's format clarification pushes it to 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Get the full golden record ... and latest price for one catalog product by slug.' It clearly distinguishes this single-product lookup from sibling search/compare tools by emphasizing 'one catalog product' and the slug-based access pattern.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description strongly implies use when the caller already has a product slug and needs the verified record, but it never explicitly names alternatives like search_catalog, find_products, or compare_products, nor does it state when not to use this tool. The usage context is clear but not contrasted with siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_merchantsList merchantsARead-onlyInspect
List public AirShelf merchants that have an assigned slug and at least one active product. Internal/demo and empty catalogs are excluded. Returns each merchant's name, slug, and product count; the slug is the merchant argument for request_quote.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| total | No | |
| merchants | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and destructiveHint=false, so the read-only nature is known. The description adds meaningful behavioral detail: filtering rules (internal/demo/empty catalogs excluded), the exact returned fields (name, slug, product count), and the cross-tool relationship of the slug. This goes beyond the annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tightly written sentences. The first states what is listed and the filters; the second states the return fields and connects the output to a sibling tool. Every sentence carries information, and the core purpose is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool with annotations covering safety and an output schema available, the description is complete. It specifies the exact population, the expected fields, and the practical use of the output. No additional context is needed to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters)Skip, and schema coverage is 100% vacuously; the baseline for 0 params is 4. The description adds no parameter-specific detail because none exists, but it does mention the relevance of the returned slug to request_quote, which is a useful adjacent semantic hint.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description starts with a specific verb-resource pair ('List public AirShelf merchants') and further narrows the scope with precise inclusion criteria (assigned slug, at least one active product). It distinguishes the tool by explicitly excluding internal/demo and empty catalogs, and clarifies the output's role (slug as merchant argument for request_quote), making it easy to differentiate from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context: this is the tool to use when you need publicly available merchants with active products)Skip, and it even ties the output to request_quote. However, it does not explicitly compare to alternatives like search_catalog or find_products, nor state when not to use it, leaving a small gap in routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
request_quoteRequest a quote from a merchantADestructiveInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Any extra context from the buyer | |
| contact | Yes | Buyer contact details | |
| merchant | Yes | Merchant slug or id (from list_merchants), or "airshelf-network" for network-catalog brands | |
| products | Yes | Catalog slugs the buyer is interested in | |
| quantity | No | Units the buyer wants | |
| brandSlug | No | Manufacturer slug (from search results) — required with merchant:"airshelf-network" so the lead reaches the right brand |
Output Schema
| Name | Required | Description |
|---|---|---|
| status | No | |
| next_step | No | |
| reference_number | No |
TDQS
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.
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.
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.
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.
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.
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.
research_shoppingResearch a considered purchaseAInspect
research_shopping is the full verified-research job; find_products is the quick candidate-list tool. It runs as a background job and returns status "running" with a research ID while the minutes-long research continues; the same research ID returns the run on later polls until completion. Unsafe medical, legal, financial-advice, and professional-service asks return status "refused" before any work is queued. Completed runs return a researched recommendation with per-claim source receipts, or an explicit refusal when evidence is insufficient. Missing decision details return clarification questions before research starts. market biases discovery and marketplace checks toward seller pages serving that country; "available in " means the seller page serves that market, not that stock is guaranteed. Example answer keys include {"budget":"500 USD","market":"US","category":"espresso machine"}.
| Name | Required | Description | Default |
|---|---|---|---|
| need | No | Buyer need in natural language. Required when starting a new research run. | |
| market | No | Buyer market as an ISO 3166-1 alpha-2 country code. Biases discovery and marketplace checks toward seller pages serving that country; availability is not a stock guarantee. | |
| answers | No | Answers to clarification questions. Set accept_defaults:true to accept budget and market defaults; it does not waive product type, use case, or must-have requirements. | |
| persona | No | Research persona; b2b produces a quotation/RFQ pack. | |
| research_id | No | Existing research run identifier to read instead of starting a new run. |
Output Schema
| Name | Required | Description |
|---|---|---|
| stage | No | |
| reason | No | |
| status | Yes | |
| dossier | No | |
| outcome | No | |
| questions | No | |
| eta_seconds | No | |
| research_id | No | |
| stage_counters | No | Progress counters for a running research job. Individual counters may be absent. |
| elapsed_seconds | No | |
| accepted_defaults | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes far beyond the annotations by disclosing async execution, polling via research_id, 'running'/'refused' statuses, per-claim source receipts, explicit refusal on insufficient evidence, and clarification-before-research behavior. It also clarifies the market semantics as 'seller page serves that market, not that stock is guaranteed.' This adds substantial behavioral context beyond readOnlyHint, openWorldHint, and destructiveHint.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence in the description carries signal: purpose contrast, async lifecycle, refusal policy, completion output, clarification flow, market caveat, and example answer keys. It is front-loaded with the tool's purpose and contains no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex 5-parameter async job, the description covers the full lifecycle: starting research, polling by research ID, receiving a completed recommendation, handling refusals, and getting clarification questions. It also explains nested and market-dependent semantics. Since an output schema exists, not restating the full return shape in prose is acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the parameters are already well documented. The description adds extra meaning by explaining the market bias and by providing an example answer key for the answers object ({budget, market, category}), which helps an agent structure a nested free-form parameter. It does not redundantly re-explain need or persona.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens by stating a specific verb, resource, and scope: 'research_shopping is the full verified-research job,' and immediately contrasts it with 'find_products is the quick candidate-list tool.' The title 'Research a considered purchase' reinforces the intended use case. An agent can distinguish this tool from siblings without opening other schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly positions research_shopping against find_products, signaling that it is the slower, more thorough alternative. It also clarifies when research will not proceed: unsafe domains are 'refused' and missing decision details produce clarification questions. It does not explicitly route the agent among the other siblings like compare_products or request_quote, so some usage context is left implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_catalogSearch product catalogARead-onlyInspect
Search the AirShelf cross-vendor product catalog by natural-language query. The catalog covers industrial-automation, wiring-devices, digital-signage, business-display, mfp, barcode-printer, laser-printer, inkjet-printer, mechanical-keyboards, cybersecurity, threat-intelligence-platform. Industrial-automation and wiring-device rows are indexed by manufacturer part number, so a brand or part number in the query ("Pepperl+Fuchs retroreflective sensor", "IN5409") retrieves more reliably than a bare product type; those rows carry no normalized spec facets, so the specs filter does not apply to them. Returns ranked products with prices, specs, and per-row match accounting.
Each row includes unverified_specs, the normalized spec names that lack claim-level receipts; never use those as decisive facts.
Example queries: "tactile mechanical keyboard under $150", "Toshiba A3 colour multifunction device", "industrial barcode printer for a warehouse", "threat-intelligence platform with dark-web monitoring".
Result fields: • canonical_name — the exact catalog name of the product. • spec_absence_note — spec fields absent from this product's golden record (AirShelf's verified product record); null when nothing is missing. • constraint_match_score and matched_criteria — query constraints supported by claim-level receipts. unverified_criteria names matching catalog values that still need confirmation; missing_criteria names values that are absent or conflict. • parsed.price_availability — all_null = true means every returned price is null. For quote-gated B2B pricing, a null price with a quote path is expected rather than an error; query_had_budget reports whether the query carried one. • result.commercial_data — branch on actionable before using price or stock. Observations older than 24 hours are withheld from result.price/result.inStock and retained only as labelled last_observed history. • parsed.weak_match — the response contains an unresolved constraint, query match, or product-identity warning. parsed.unverified_identity_count counts returned names without an identity receipt. parsed.no_match — no product satisfies a hard constraint, and candidates violating it were excluded server-side.
On a miss or near-miss for a specific brand+model the response may also carry a tier3 block, meaning a real-time lookup for the exact SKU asked about; it can appear alongside fuzzy-neighbour rows.
• tier3.status = "resolved" — a single-source reading of the page at tier3.source_url. MPN-confirmed means the live lookup matched the manufacturer part number. Its verification is "live-unverified": confirmed on a live page during this run, but not yet matched to an AirShelf catalog record. A verified row is matched to the catalog record. tier3.cached = true means it came from a recent prior lookup, with fetched_at recording when the page was read.
• tier3.status = "abstain" — the lookup could not confirm the product exists as asked, so no specs, price, or availability were established. tier3.guidance describes the quote-request path.
• tier3.status = "declined" — an applicable lookup did not run; tier3.reason says why (disabled, rate_limited, daily_cap, negative_cache, error). No specs or availability were established, and none should be inferred.
No tier3 block at all means a live lookup was not applicable to this query (no parseable brand+model identity).
Optional market (ISO 3166-1 alpha-2, e.g. "TH") excludes catalog rows whose country-specific URL conflicts with the buyer market and scopes tier3 lookup/cache. A remaining global URL is not local-availability proof: parsed.weak_match stays true and unsatisfied_constraints includes market_availability until every returned row has a matching country receipt. "Available in " still does not guarantee stock.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Natural-language query, at most 200 characters. Supports budget hints (e.g. "under $150"). | |
| limit | No | Max results | |
| specs | No | Hard spec facets, e.g. {"form_factor":"desktop","print_speed_ppm":33}. Filters by exact/range spec match. | |
| market | No | Buyer market as an assigned ISO 3166-1 alpha-2 country code (e.g. "TH", "AU"). Conflicting country receipts are excluded; global URLs remain market-unverified. | |
| category | No | Optional category filter (industrial-automation, wiring-devices, digital-signage, business-display, mfp, barcode-printer, laser-printer, inkjet-printer, mechanical-keyboards, cybersecurity, threat-intelligence-platform) | |
| merchant | No | Optional merchant slug (e.g. "toshiba", "cyble") from list_merchants. Scopes the search to that merchant's own shelf, which is a SEPARATE substrate from the cross-vendor catalog: it is reached only when the cross-vendor catalog returns nothing, and its rows carry the merchant's own product data rather than datasheet-extracted golden records. Omit it for cross-vendor search, which is the default and the right choice for "what should I buy". |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | No | |
| query | No | |
| tier3 | No | |
| parsed | No | |
| reason | No | |
| status | No | |
| results | Yes | |
| took_ms | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Even though the annotations already mark this as safe and read-only, the description adds substantial behavioral nuance: unverified_specs must not be treated as decisive, null prices can be expected for quote-gated B2B pricing, data older than 24 hours is withheld, tier3 lookup statuses are explained, and market availability semantics are detailed. No contradiction with the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but well-structured, front-loads the purpose, and uses bullet-style field explanations that are easy to scan. Some result-field detail may overlap with what the output schema already conveys, but the behavioral caveats around unverified data and tier3 statuses justify most of the length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 6 parameters, nested outputs, and subtle edge cases, this description is remarkably complete. It explains query construction, result interpretation, no-match behavior, unavailable-price semantics, market verification, and the tier3 fallback path, leaving an agent well equipped to call the tool and interpret responses correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3; the description then adds value by explaining that brand/part-number queries retrieve more reliably for certain rows, that the specs filter does not apply to those rows, and by providing example queries and deeper market-parameter behavior. It does not add much for limit or category, but the schema already describes those adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Search the AirShelf cross-vendor product catalog by natural-language query.' It distinguishes the cross-vendor catalog from the merchant-specific shelf described in the merchant parameter, but it does not explicitly differentiate this tool from sibling search-like tools such as find_products or research_shopping.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for use: cross-vendor search is the default and 'the right choice for "what should I buy"'. It also explains when the merchant-specific shelf is reached and the conditions around tier3 live lookups. However, it does not state explicit 'use this instead of X' exclusions for sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- Changed
search_catalog1 field changed- added
Input schema / properties / merchantAdded value: +{ + "description": "Optional merchant slug (e.g. \"toshiba\", \"cyble\") from list_merchants. Scopes the search to that merchant's own shelf, which is a SEPARATE substrate from the cross-vendor catalog: it is reached only when the cross-vendor catalog returns nothing, and its rows carry the merchant's own product data rather than datasheet-extracted golden records. Omit it for cross-vendor search, which is the default and the right choice for \"what should I buy\".", + "pattern": "^[a-z0-9][a-z0-9-]{0,62}$", + "type": "string" +}
4 tool updates
- Changed
get_product6 fields changed- added
Output schema / properties / product / propertiesAdded value: +{ + "cited_field_count": { + "description": "Number of golden-record fields with claim-level citations.", + "type": "number" + }, + "field_count": { + "description": "Total golden-record fields used as the evidence coverage denominator.", + "type": "number" + }, + "latestPrice": { + "anyOf": [ + { + "additionalProperties": {}, + "properties": { + "capturedAt": { + "type": "string" + }, + "currency": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + }, + "inStock": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ] + }, + "price": { + "type": "number" + }, + "retailer": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + } + }, + "required": [ + "price", + "currency", + "retailer", + "inStock", + "capturedAt" + ], + "type": "object" + }, + { + "type": "null" + } + ], + "description": "Latest valid price observation within 24 hours. Null when absent or stale; stale history remains in commercial_data.last_observed." + }, + "lifecycle_status": { + "description": "Retirement marker from stored product evidence. current means no retirement marker was found.", + "enum": [ + "current", + "retired" + ], + "type": "string" + }, + "pdfFilenames": { + "description": "Stored source PDF filenames. A filename is not a download URL.", + "items": { + "type": "string" + }, + "type": "array" + }, + "qualityScore": { + "description": "Percentage of golden-record fields with claim-level citations. Zero when there are no fields.", + "type": "number" + }, + "related_products": { + "description": "Documented related catalog products, including accessories, equivalents and replacements.", + "items": { + "additionalProperties": {}, + "properties": { + "direction": { + "description": "from_this means this product points to the related product; to_this means the reverse.", + "enum": [ + "from_this", + "to_this" + ], + "type": "string" + }, + "relation": { + "description": "Relationship type recorded from vendor documents.", + "type": "string" + }, + "slug": { + "type": "string" + }, + "source": { + "anyOf": [ + { + "additionalProperties": {}, + "propertyNames": { + "type": "string" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "description": "Stored source URL, quote, section or page for the relationship; null when none was recorded." + } + }, + "required": [ + "slug", + "relation", + "direction" + ], + "type": "object" + }, + "type": "array" + }, + "sources": { + "anyOf": [ + { + "anyOf": [ + { + "items": { + "anyOf": [ + { + "additionalProperties": {}, + "properties": { + "type": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "description": "Stored source type, such as pdf or product_page." + }, + "url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "description": "Source document or product-page URL when recorded." + } + }, + "type": "object" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "additionalProperties": {}, + "propertyNames": { + "type": "string" + }, + "type": "object" + } + ] + }, + { + "type": "null" + } + ], + "description": "Stored evidence sources. Imports may preserve a source object, use ref instead of url, or list plain strings. Null when unavailable." + }, + "updatedAt": { + "description": "Catalog row update time as an ISO 8601 timestamp, not a per-claim verification time.", + "type": "string" + } +} - removed
Output schema / properties / product / propertyNamesRemoved value: -{ - "type": "string" -} - added
Output schema / properties / related_products / descriptionAdded value: +"Documented related catalog products, including accessories, equivalents and replacements." - added
Output schema / properties / related_products / items / propertiesAdded value: +{ + "direction": { + "description": "from_this means this product points to the related product; to_this means the reverse.", + "enum": [ + "from_this", + "to_this" + ], + "type": "string" + }, + "relation": { + "description": "Relationship type recorded from vendor documents.", + "type": "string" + }, + "slug": { + "type": "string" + }, + "source": { + "anyOf": [ + { + "additionalProperties": {}, + "propertyNames": { + "type": "string" + }, + "type": "object" + }, + { + "type": "null" + } + ], + "description": "Stored source URL, quote, section or page for the relationship; null when none was recorded." + } +} - removed
Output schema / properties / related_products / items / propertyNamesRemoved value: -{ - "type": "string" -} - added
Output schema / properties / related_products / items / requiredAdded value: +[ + "slug", + "relation", + "direction" +]
- Changed
list_merchants4 fields changed- added
Output schema / properties / merchants / items / properties / checkout_capabilityAdded value: +{ + "description": "shopify indicates a connected Shopify store; redirect sends the buyer to the product page.", + "enum": [ + "shopify", + "redirect" + ], + "type": "string" +} - added
Output schema / properties / merchants / items / properties / manifest_urlAdded value: +{ + "description": "Merchant agent manifest URL with supported endpoints and capabilities.", + "type": "string" +} - added
Output schema / properties / merchants / items / properties / products_urlAdded value: +{ + "description": "Merchant product-listing endpoint URL.", + "type": "string" +} - added
Output schema / properties / merchants / items / properties / search_urlAdded value: +{ + "description": "Merchant-scoped product-search endpoint URL.", + "type": "string" +}
- Changed
research_shopping3 fields changed- added
Output schema / properties / stage_counters / descriptionAdded value: +"Progress counters for a running research job. Individual counters may be absent." - added
Output schema / properties / stage_counters / propertiesAdded value: +{ + "candidates_found": { + "description": "Candidates found during discovery.", + "type": "number" + }, + "listings_checked": { + "description": "Market listing URLs recorded during commercial checks.", + "type": "number" + }, + "stage": { + "description": "Current pipeline stage identifier, or queued before work starts.", + "type": "string" + }, + "verified": { + "description": "Candidates examined during verification, not a count of candidates that passed.", + "type": "number" + } +} - removed
Output schema / properties / stage_counters / propertyNamesRemoved value: -{ - "type": "string" -}
- Changed
search_catalog1 field changed- changed
Input schema / properties / category / descriptionPrevious value: -"Optional category filter (industrial-automation, wiring-devices, digital-signage, business-display, mechanical-keyboards, mfp, barcode-printer, laser-printer, inkjet-printer, cybersecurity, or threat-intelligence-platform)"New value: +"Optional category filter (industrial-automation, wiring-devices, digital-signage, business-display, mfp, barcode-printer, laser-printer, inkjet-printer, mechanical-keyboards, cybersecurity, threat-intelligence-platform)"
1 tool update
- Changed
search_catalog1 field changed- changed
Input schema / properties / category / descriptionPrevious value: -"Optional category filter (industrial-automation, wiring-devices, mechanical-keyboards, mfp, barcode-printer, laser-printer, inkjet-printer, cybersecurity, or threat-intelligence-platform)"New value: +"Optional category filter (industrial-automation, wiring-devices, digital-signage, business-display, mechanical-keyboards, mfp, barcode-printer, laser-printer, inkjet-printer, cybersecurity, or threat-intelligence-platform)"
1 tool update
- Changed
get_product1 field changed- changed
Input schema / properties / slug / descriptionPrevious value: -"Composite slug, e.g. keychron-q1-pro"New value: +"Composite slug, e.g. toshiba-b-ex4t1-ts12-qm-r"
1 tool update
- Changed
search_catalog1 field changed- changed
Input schema / properties / category / descriptionPrevious value: -"Optional category filter (industrial-automation, wiring-devices, mechanical-keyboards, mfp, barcode-printer, laser-printer, cybersecurity, or threat-intelligence-platform)"New value: +"Optional category filter (industrial-automation, wiring-devices, mechanical-keyboards, mfp, barcode-printer, laser-printer, inkjet-printer, cybersecurity, or threat-intelligence-platform)"
1 tool update
- Changed
get_product1 field changed- added
Output schema / properties / related_productsAdded value: +{ + "items": { + "additionalProperties": {}, + "propertyNames": { + "type": "string" + }, + "type": "object" + }, + "type": "array" +}
1 tool update
- Changed
search_catalog1 field changed- changed
Input schema / properties / category / descriptionPrevious value: -"Optional category filter (mechanical-keyboards, mfp, barcode-printer, laser-printer, cybersecurity, or threat-intelligence-platform)"New value: +"Optional category filter (industrial-automation, wiring-devices, mechanical-keyboards, mfp, barcode-printer, laser-printer, cybersecurity, or threat-intelligence-platform)"
1 tool update
- Changed
find_products1 field changed- added
Output schema / properties / live_discoveryAdded value: +{ + "additionalProperties": false, + "properties": { + "guidance": { + "type": "string" + }, + "reason": { + "type": "string" + }, + "status": { + "const": "unavailable", + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" +}
1 tool update
- Changed
find_products1 field changed- changed
Output schema / properties / status / enumPrevious value: -[ - "ok", - "no_match", - "disabled", - "rate_limited", - "error", - "refused" -]New value: +[ + "ok", + "no_match", + "disabled", + "rate_limited", + "unavailable", + "error", + "refused" +]
1 tool update
- Changed
research_shopping1 field changed- added
Output schema / properties / accepted_defaultsAdded value: +{ + "additionalProperties": { + "type": "string" + }, + "propertyNames": { + "type": "string" + }, + "type": "object" +}
1 tool update
- Changed
search_catalog2 fields changed- added
Output schema / properties / reasonAdded value: +{ + "type": "string" +} - added
Output schema / properties / statusAdded value: +{ + "enum": [ + "refused" + ], + "type": "string" +}
1 tool update
- Changed
research_shopping1 field changed- changed
Input schema / properties / answers / descriptionPrevious value: -"Answers to clarification questions. Set accept_defaults:true to explicitly waive missing dimensions."New value: +"Answers to clarification questions. Set accept_defaults:true to accept budget and market defaults; it does not waive product type, use case, or must-have requirements."
1 tool update
- Changed
search_catalog1 field changed- changed
Input schema / properties / market / descriptionPrevious value: -"Buyer market as an assigned ISO 3166-1 alpha-2 country code (e.g. \"TH\", \"AU\"). It affects only tier3 live lookup and does not filter or rank global catalog rows."New value: +"Buyer market as an assigned ISO 3166-1 alpha-2 country code (e.g. \"TH\", \"AU\"). Conflicting country receipts are excluded; global URLs remain market-unverified."
1 tool update
- Changed
search_catalog1 field changed- added
Input schema / properties / q / minLengthAdded value: +0
1 tool update
- Changed
find_products1 field changed- changed
Output schema / properties / status / enumPrevious value: -[ - "ok", - "no_match", - "disabled", - "rate_limited", - "error" -]New value: +[ + "ok", + "no_match", + "disabled", + "rate_limited", + "error", + "refused" +]
1 tool update
- Changed
find_products1 field changed- added
Output schema / properties / reasonAdded value: +{ + "type": "string" +}
Related MCP Connectors
AI-agent product catalog: search, lookup & purchase routing over verified merchant data.
Autonomous commerce for AI agents: discover, quote, order, pay, verify.
AI agent product discovery via open marketplace. Search, compare and discover advertiser products.
Agent-callable B2B SaaS directory: capability-structured, continuously verified listings.
Related MCP Servers
- AlicenseAqualityAmaintenanceCross-border product catalog for AI agents. Search and compare products from US and South East Asian markets via Model Context Protocol.679 npm14MIT
- AlicenseAqualityDmaintenanceEnables AI agents to discover, compare, and select the best AI models across multiple providers based on pricing, performance, and capabilities, with real-time cost estimation and benchmarking.940 npm1MIT
- AlicenseAqualityFmaintenanceUniversal search engine for AI agents. Discover products, services, and businesses across every category. 10 MCP tools, zero LLM calls, millisecond responses.114AGPL 3.0
- AlicenseAqualityAmaintenanceGive your AI agent access to 8,400+ software tools — search, compare, get pricing, find alternatives, and discover the best tool for any use case.857 npm4MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.