Skip to main content
Glama

Search Products

search_products
Read-onlyIdempotent

Search 100M+ products across thousands of retailers for one product type. Call once for each distinct product type, and send independent calls together. Put relevant constraints in query. Returns up to 8 product cards plus structured product data. The result includes a thread_id. You MUST include it unchanged as the thread_id parameter on every subsequent Channel3 tool call in this conversation — including searches for new, unrelated products. Never omit it once you have one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoOne product type and its constraints in natural language (brand, color, material, size, price, gender). Good: "red leather jacket under $200"; "leather golf glove under $40". Bad: "gift ideas for dad"; "cool sneakers"; "golf glove or rangefinder".
image_urlNoPublic image URL for visual search. Combine with `query` for text + image.
thread_idNoConversation thread ID. Omit ONLY on the very first Channel3 call of a conversation. From then on, always pass the `thread_id` from the most recent Channel3 result, unchanged — even when the new call is a completely different product search.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
seqNo
as_ofYesISO timestamp of when this result was produced; prices are live as of this moment.
queryNoThe text query this result answers.
productsYes
image_urlNoThe image URL this result answers.
thread_idYesConversation thread ID. Pass it back unchanged as `thread_id` on every follow-up call in this conversation.
session_idNoPostHog MCP session ID for analytics correlation.
server_originNoOrigin of this MCP server; the storefront UI posts analytics events here.
next_page_tokenYesOpaque pagination token used by the storefront UI; not usable via this tool.

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, but the description adds critical behavioral context: it mentions that results include a thread_id, and the agent MUST include it unchanged on every subsequent Channel3 call, even for unrelated searches. This is a non-obvious stateful behavior beyond the annotations, and it is clearly disclosed.

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 concise and well-structured: it opens with the primary purpose, then gives usage batching advice, notes the output format, and finishes with the mandatory thread_id rule. Every sentence is information-dense and contributes to correct invocation; there is no redundancy or filler.

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?

With an output schema present to handle return-value details, the description covers all essential operational context: scope of search, call batching, constraint placement, and the persistent thread_id requirement. It is fully sufficient for an agent to use the tool correctly, including across multiple calls.

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?

The input schema already provides comprehensive descriptions for all three parameters (100% coverage), so the description does not need to add much. It only reinforces that constraints go into `query` and that thread_id is required after the first call. This meets the baseline for high schema coverage but adds no new parameter-level semantic detail.

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 function: 'Search 100M+ products across thousands of retailers for one product type.' It specifies the resource (products), the action (search), and the scope (one product type), and distinguishes from sibling tools by emphasizing single-type search. The return of 'up to 8 product cards plus structured product data' further clarifies the purpose.

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 explicit usage instructions: 'Call once for each distinct product type, and send independent calls together' and 'Put relevant constraints in `query`.' It also mandates the thread_id propagation. However, it does not explicitly name alternative tools or describe when not to use this tool, so it falls short of a 5.

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

The two search-related tools (browse_products, search_products) wrap in each other, and get_details/get_products both return product offer/detail data. The descriptions help mostly separate intended use ('browse' implies pagination, 'get_products' supports multiple IDs and comparison), but some boundary decisions remain.

Naming Consistency4/5

Most tools consistently follow verb_noun and snake_case (browse_products, get_products, search_products, get_price_history). get_details and get_similar are minor deviations because their object nouns are vague or adjectival, but nothing is chaotic.

Tool Count5/5

Six tools is a well-scoped number for product search: discovery, browsing, details, price history, comparison support, and similar products are covered. No tool feels like filler.

Completeness4/5

The tool covers the main product-search workflow end to end: query, browse, detail, compare, price history, and recommendations. There are small potential gaps like explicit compare or pagination controls, but agents can work around them.

Resources