Skip to main content
Glama

Channel3 Shopping

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

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

Beyond the annotations (readOnly, idempotent, non-destructive), the description discloses critical behavior: result cap ('up to 8 product cards') and the mandatory thread_id propagation ('You MUST include it unchanged on every subsequent Channel3 tool call'). This is significant stateful context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences, each with a clear purpose: purpose, batching/query guidance, return shape, and mandatory thread_id rule. The thread_id warning is repeated for emphasis, which is justified given its importance. Slightly verbose but well-structured.

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 output schema and annotations, the description covers the essential aspects: purpose, usage pattern, return size, and the cross-call state requirement. No critical information is missing.

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?

Schema coverage is 100%, so a baseline of 3 applies. The description adds value by instructing to put constraints in query and reinforcing the thread_id rule, which helps the agent use parameters correctly beyond the schema text.

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.' This is a specific verb+resource+scope that distinguishes it from siblings like browse_products or get_details.

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?

Provides explicit usage guidance: 'Call once for each distinct product type, and send independent calls together' and 'Put relevant constraints in query.' It also specifies the thread_id propagation requirement. It does not explicitly name alternative tools, but the intended use case is clear.

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

There are overlapping tool pairs: browse_products and search_products both search products, and get_details and get_products both return offers/details for a product. This creates real ambiguity for an agent deciding which call to make. get_price_history and get_similar are clearer, but the main read/search boundaries are fuzzy.

Naming Consistency3/5

All names use snake_case with a verb prefix, which is helpful, but the pattern is inconsistent: browse_products and search_products imply different actions while doing similar work, and get_details versus get_products doesn't make the distinction obvious. get_similar also lacks the resource-noun pattern used elsewhere.

Tool Count5/5

Six tools is a well-scoped count for a shopping product-lookup server. Each tool covers a distinct aspect of product discovery except for the overlapping pairs, and there is no evidence of bloating or unnecessary duplication at the set level.

Completeness5/5

The tool surface covers the core product discovery workflow: search, browse/paginate, fetch details, compare by IDs, view price history, and find similar products. For a storefront UI tool, there are no obvious missing essential operations.