Skip to main content
Glama

Recall Kitchen

get_product_recall

Read-onlyIdempotent

Get a recall by id, including extracted lots, UPCs, model numbers, locations, and contact info

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoalias for recall_id
recall_idNorecall id returned by search tools

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlYes
titleYes
sourceYes
statusNo
extractedNo
descriptionYes
publishedOnYes
descriptionTruncatedNo

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds useful context about what the response contains (extracted lots, UPCs, model numbers, locations, contact info) but does not reveal behaviors beyond that, such as error handling or open-world caveats.

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 a single, focused sentence that front-loads the primary action ('Get a recall by id') and then lists the relevant inclusion content. Every word earns its place; there is no repetition or filler.

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 tool has an output schema, so return values are already specified, and the description adds the key data categories included. The only gap is that both parameters are marked optional while the tool logically requires an id, but the description and schema together make the intended usage clear enough.

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 description coverage is 100%, so both parameters (id and recall_id) are already documented, including the alias relationship. The description adds no additional parameter semantics beyond repeating that the tool fetches by id, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb ('Get') and resource ('a recall by id'), and lists the included data fields (lots, UPCs, model numbers, locations, contact info). This distinguishes it from the many search siblings that find recalls by query, UPC, image, or identifier, though it does not explicitly name an alternative tool.

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

Usage Guidelines3/5

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

The schema description for recall_id says it is 'returned by search tools,' which implies this tool is used after a search to fetch full recall details. However, the main description does not explicitly state when to use this tool versus search_product_recalls or other search siblings, leaving the when-to-use guidance implicit.

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

Most tools have clearly distinct roles, and the descriptions explicitly separate product lookup from recall search. However, the multiple recall search entry points (by query, UPC, image, and identifier) overlap enough that an agent could pick the wrong one without carefully reading the details.

Naming Consistency5/5

Tool names consistently follow a snake_case verb_noun pattern such as add_, list_, remove_, search_, get_, create_, revoke_, and mark_. The single-word signup is the only minor deviation, but it does not undermine the overall naming system.

Tool Count3/5

At 19 tools, the set is in the borderline-heavy range. The count is justified by the multiple subdomains like API key management, inventory, watch patterns, notifications, and recall searching, but it still feels slightly above the ideal well-scoped tool surface.

Completeness4/5

Core recall search, product lookup, inventory tracking, watch pattern management, notifications, and API key lifecycle are all covered well. Minor gaps exist such as no way to update a watch pattern or view account usage limits, but agents can generally work around them.

Resources