Skip to main content
Glama

Recipes Daily

Find recipes by ingredients on hand

find_recipes_by_ingredients
Read-onlyIdempotent

Given ingredients someone has, rank the recipes at recipes-daily.com by how many of them each one uses and name what is missing from the rest. Matches by ingredient text, not identity — a near-miss on the name still counts, but two ingredients that are genuinely different words for the same thing (courgette/zucchini) may not. This is not a substitution finder: if nothing uses every ingredient given, the closest partial matches are still worth reading — deciding whether a missing ingredient can be swapped or skipped is the caller's call, not this tool's.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoRecipes to return, ranked by coverage.
ingredientsNoWhat is on hand, one ingredient per entry — e.g. ["broccoli", "chicken breast", "lemon"].

TDQS

A4.3/5.0
Behavior5/5

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

The annotations (readOnlyHint: true, idempotentHint: true) already establish safety. The description adds materially by disclosing the matching heuristic (text-based matching, not identity — near-misses count, while synonym pairs like courgette/zucchini may fail) and the partial-match fallback behavior (returns closest partial matches rather than erroring). This is exactly the kind of behavioral nuance an agent needs to interpret results correctly. No contradiction with annotations.

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?

Three sentences cover purpose, matching heuristic, and responsibility boundary without redundancy. The first sentence is front-loaded with the core function. However, the second sentence's caveat chain ('a near-miss on the name still counts, but...') is slightly convoluted to parse, though each clause earns its place.

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?

For a read-only, idempotent ranking tool, the description comprehensively covers what the agent needs: ranking logic, matching semantics, partial-match behavior, and caller responsibility. The only minor gap is no description of the return format, but since there's no output schema and the tool is non-destructive, the cost of this gap is low. The description fully compensates for the lack of enum constraints or nested complexity.

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% — both `ingredients` (with example) and `limit` (with default and bounds) are well-documented in the schema itself. The description's matching semantics do enrich how one understands the `ingredients` param, but this is incidental rather than a direct param explanation. Since the schema carries the load, the baseline of 3 is appropriate.

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 a specific verb ('rank'), resource ('recipes at recipes-daily.com'), and ranking criterion ('by how many of them each one uses'). It goes beyond a generic statement by scoping the ranking behavior and how the tool communicates missing ingredients, which distinguishes it meaningfully from the sibling tool search_recipes.

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 gives clear context on when to use this tool (when you have a list of ingredients and want recipes ranked by coverage) and explicitly states what it is NOT ('not a substitution finder') and that the caller is responsible for substitution decisions. It stops short of explicitly naming the sibling alternative, but the boundary is well-drawn.

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

The three tools serve distinct purposes: finding recipes by ingredients, general searching, and displaying recipes as visual cards. They are mostly clearly distinguished, though search_recipes and find_recipes_by_ingredients both retrieve recipes but with different inputs (ingredients vs. general queries). The descriptions provide sufficient guidance to avoid confusion.

Naming Consistency4/5

Tool names use a consistent verb_noun pattern: find_recipes_by_ingredients, search_recipes, show_recipes. All use snake_case and a clear verb (find, search, show) followed by a noun. Minor deviation: find_recipes_by_ingredients is more verbose than the other two, but overall the pattern is predictable.

Tool Count4/5

Three tools is a minimal but reasonable count for this server's scope. The server covers the core workflow: discover recipes (search/find), then display them. It is slightly thin but earns each tool's place without unnecessary overlap. A fourth tool (e.g., get_recipe_detail) could be justified, but the count is not inappropriate.

Completeness3/5

The tool surface covers the main recipe-discovery flow: finding by ingredients, searching broadly, and displaying results as cards. However, there are notable gaps: no tool to fetch full recipe details directly (only search returns metadata), no update/create/delete operations (though these may not be relevant), and no explicit support for filtering or sorting beyond what search returns. Agents can work around these gaps, but the coverage is not fully complete.

Resources