Skip to main content
Glama

search_products

Search the Canadian product catalogue. Filter by category slug, max price (CAD), and retailer. Returns up to 20 matching products with current price and Lowvyn Score. Use this when a user is exploring what is available in a category rather than asking about a specific product. Each result carries an id + canonicalUrl you can pass to get_product, verify_deal, find_cheaper, or get_price_history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesFree-text search across product titles
categoryNoOptional category slug (e.g. 'cribs')
maxPriceNoOptional max price in CAD
retailerNoOptional retailer filter: 'amazon', 'walmart', 'bestbuy', or 'canadiantire'

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses the result cap (up to 20), the returned data (current price and Lowvyn Score), and the id + canonicalUrl workflow for later calls. It does not discuss sorting, pagination, or side effects, but 'Search' plus these concrete return details goes well beyond a bare verb.

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?

Three sentences carry scope, filters, return shape, and routing guidance with no filler. The most important usage context is front-loaded and every sentence earns its place.

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

Completeness4/5

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

The description covers what the tool returns, the 20-result limit, and how results feed sibling tools, which is strong given there is no output schema. Minor gaps such as result ordering and no-result behavior do not significantly impair an agent's ability to call it correctly.

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 coverage is 100%, so the schema already documents query, category, maxPrice, and retailer with descriptions. The description merely mentions filters and CAD without adding new parameter-level meaning beyond what the schema already provides, so the baseline of 3 is appropriate.

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 names the exact operation — searching the Canadian product catalogue — and distinguishes it from sibling get_product by stating it is for category-level exploration, not a specific product. It also names downstream sibling tools that consume the returned id and canonicalUrl, reinforcing its role.

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 an explicit use case: 'Use this when a user is exploring what is available in a category rather than asking about a specific product.' It does not explicitly name get_product as the alternative for specific-product queries, though that is strongly implied by the downstream list, so exclusion guidance is partial rather than complete.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct task: searching by intent, searching by filters, product lookup, price history, deal verification, cheaper alternatives, category browsing, and retailer awareness. Even though several tools accept a URL or product ID, their purposes are clearly separated and unlikely to cause misselection.

Naming Consistency4/5

Most tools follow a clear get_/search_/verify_/find_ action-based pattern, and the get_ prefix is used consistently for metadata and lookups. The minor deviations are intent_search (noun+verb order) and find_cheaper (verb+comparative rather than verb+noun), but the overall naming remains readable and predictable.

Tool Count5/5

Eight tools is well-scoped for a Canadian comparison-shopping and deal-verification server. Each tool covers a meaningful part of the workflow without feeling redundant or stacked with unnecessary helpers.

Completeness5/5

The tool set fully covers the domain's core workflows: searching products either by intent or structured filters, exploring categories and retailers, retrieving product details, checking price history, comparing prices at other retailers, and verifying whether a specific deal is genuine. There are no obvious dead ends or missing operations that the shown purpose would call for.

Resources