Skip to main content
Glama
zachsnow

parsley-mcp

by zachsnow

get_recipe

Read-only

Retrieve recipe details by ID or item number, including steps, ingredients, sub-recipes, nutrition, and cost for menu planning.

Instructions

Get recipe: steps, ingredients, sub-recipes, nutrition, cost.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID (numeric) or item number (string)
getByItemNumberNoTrue if id is an item number
roundedQuantitiesNoRound to 2 decimals (default true)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so safety is covered. The description adds value by naming what is returned (steps, ingredients, sub-recipes, nutrition, cost), which matters since there is no output schema, but it says nothing about auth, errors, or caching.

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?

Single front-loaded sentence with the verb first and a tight comma-separated payload list. No filler, no repetition.

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 simple read tool with no output schema, the description compensates adequately by enumerating the response fields, and all three parameters are fully documented in the schema. Missing only minor operational notes like caching behavior or rate limits.

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 the schema already documents id, getByItemNumber, and roundedQuantities. The description adds no parameter-level meaning beyond that, making the baseline 3 appropriate.

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?

Specific verb+resource ('Get recipe') and an enumeration of the returned payload (steps, ingredients, sub-recipes, nutrition, cost). It does not differentiate itself from siblings like get_menu_item or get_ingredient beyond the distinct resource name, so it stops short of 5.

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

Usage Guidelines2/5

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

No guidance on when to call this versus alternatives, no prerequisites, and no when-not conditions. The implied usage (fetch a recipe by id) is obvious but never stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.