Skip to main content
Glama

Recall Kitchen

search_product_recalls_from_image

Read-onlyIdempotent

Identify products in a public HTTPS image URL, data:image/...;base64 URI, or MCP image content part. Local files are not supported. Each product includes match (upc, model, text, category) and confidence. Category matches omit recalls unless include_category_matches=true. Requires an API key or x402; not included in the free anonymous per-IP quota.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoalias for image_url
limitNonumber of recalls to return per product, 1-100, default 3
image_urlNoHTTPS URL or data:image/...;base64 URI of a photo containing products. Local file paths are not supported.
include_category_matchesNoif true, attach keyword recalls for generic items such as cups; default false

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
recallsYes
productsYes

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the read-only/idempotent annotations, the description meaningfully discloses the auth limitation (not included in the free anonymous per-IP quota), the input constraint on local files, and the conditional behavior of category matches. These are non-obvious behaviors that an agent needs before calling the tool.

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 five short sentences, each contributing a distinct fact: supported inputs, unsupported inputs, output shape, parameter behavior, and auth requirements. The core purpose is front-loaded and there is no redundant 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?

For a read-only, 4-parameter tool with an output schema, this description covers all essential decision points: input formats, the key category-match conditional, auth requirements, and expected match fields. An agent has enough context to invoke it correctly without additional inference.

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 documents all four parameters at 100% coverage, so the baseline is 3. The description adds value by introducing MCP image content part as an accepted form beyond what the schema lists, clarifying that url is meant as an alias concept, and explaining the include_category_matches conditional. Limit semantics are already well covered by the schema.

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 states a clear verb-resource pair: it identifies products from an image and links them to recalls. It enumerates accepted input forms (public HTTPS URL, base64 data URI, MCP image content) and explicitly excludes local files, which distinguishes it from text/UPC-based siblings such as search_product_recalls_by_upc.

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 clearly indicates when to use this tool: when the input is an image URL, data URI, or MCP image content. It also gives an exclusion (local files are not supported) and a prerequisite (API key or x402). It does not explicitly name alternative sibling tools for those excluded cases, so it stops short of full routing 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/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