Skip to main content
Glama

Recommend Products

recommend_products
Read-onlyIdempotent

Recommend catalog products for a need described in plain language. FREE.

Typical input {"need": "help answering customer support emails"} returns {"need": ..., "recommendations": [{"slug": ..., "name": ..., "why": ..., "area": ..., "try_free": ""}], "next": "..."}.

Use when the caller describes a problem instead of naming a product; ranking is by fit to the described need. Not for exact keyword or slug lookups (search_catalog). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
needYesThe job or problem in plain language, a few words or a sentence, e.g. "help answering customer support emails".
limitNoMaximum recommendations; values outside 1-10 are clamped. Default 5.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.9/5.0
Behavior5/5

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

Even though annotations already mark the tool as read-only and idempotent, the description adds valuable context: it details error handling (never a protocol error, always returns an error object), confirms safety to retry, gives a concrete output example, and mentions it is free. These details go well beyond 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.

Conciseness5/5

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

Every sentence in the description earns its place. It opens with a clear purpose, then quickly notes the free aspect, provides a concrete example, explains when to use (and when not), describes error behavior, and reassures safety. Despite covering multiple aspects, it remains tight and 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?

For a recommendation tool, the description covers all necessary aspects: purpose, input/output format, usage context, alternative tool, error handling, and safety guarantees. The presence of an output schema means return values don't need elaboration. The description leaves no critical gaps for an agent to use this tool correctly.

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 already covers both parameters with descriptions (100% coverage), so the baseline is 3. The description adds contextual value by showing a typical input/output example that illustrates how both parameters are used together, and it explains that limit values outside 1-10 are clamped. That extra context justifies a 4.

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 opens with 'Recommend catalog products for a need described in plain language,' which pairs a specific verb and resource with a clear method. It explicitly distinguishes from the sibling 'search_catalog' by stating 'Not for exact keyword or slug lookups,' so the agent can differentiate easily.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description directly states when to use: 'Use when the caller describes a problem instead of naming a product.' It also explicitly says when not to use and names the alternative: 'Not for exact keyword or slug lookups (search_catalog).' This provides unambiguous guidance.

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

The tools are mostly distinct, but the four get_full_* tools (kit, persona, product, skill) share a similar naming pattern and could be confused. Descriptions clarify the different payloads, so an agent can select correctly with careful reading.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern (get_free_skill, list_kits, search_catalog, etc.). The verbs vary by action but the structure is uniform and predictable.

Tool Count5/5

10 tools cover catalog search, recommendation, preview, and tiered content retrieval. This is well-scoped for a product catalog server, neither too few nor too many.

Completeness4/5

The surface covers browsing, searching, recommending, previewing, and retrieving free/full content, plus upgrade info. Minor gap: per-product pricing is not available except for kits, so agents cannot quote individual product prices directly.

Resources