Skip to main content
Glama
zachsnow

parsley-mcp

by zachsnow

list_menu_items

Read-only

Retrieve recipes, subrecipes, or ingredients from a menu, filtered by item type or sync tag. Returns up to 20 items with totals and truncation status.

Instructions

List menu items (recipes, subrecipes, ingredients). Returns up to 20 with {items, total, truncated}; each item has id, name, itemNumber, tags, type. If truncated, prefer search_menu_items or narrow with syncTag/type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNoFilter by item type
syncTagNoFilter by sync tag name

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so safety is covered. The description adds real behavioral context the annotations do not: a hard cap of 20 items, the {items, total, truncated} envelope, and what truncation signals. It does not mention auth or rate limits, but for a read-only list tool that is a minor omission.

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?

Three tight sentences: purpose first, then return shape and size limit, then the escalation path. Every clause carries information and nothing is repeated.

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 two-optional-parameter list tool with no output schema, the description supplies the return structure, the pagination/truncation behavior, and the escalation route — everything needed to call it correctly and interpret the result.

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% and both parameters (type with its enum, syncTag) are already documented there. The description only echoes their names as narrowing tools, adding no format or semantics beyond the schema, so baseline 3 applies.

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?

States a specific verb and resource ('List menu items') and immediately disambiguates what an item is (recipes, subrecipes, ingredients). It also names the sibling search_menu_items, so an agent can distinguish the two without opening a schema.

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?

Gives an explicit fallback condition and alternative: 'If truncated, prefer search_menu_items or narrow with syncTag/type.' The when-to-switch rule is unambiguous and tied to an observable response field.

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