Skip to main content
Glama
zachsnow

parsley-mcp

by zachsnow

get_menu_item

Read-only

Retrieve menu item details by ID or item number, including description, nutrition, allergens, and photo, to support recipe management and menu planning.

Instructions

Get menu item details: description, nutrition, allergens, photo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID (numeric) or item number (string)
getByItemNumberNoTrue if id is an item number

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

B3.2/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 the safety profile is covered. The description adds that nutrition, allergens, and photo are part of the payload, which is useful context, but says nothing about error behavior for unknown IDs or rate limits.

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?

A single compact sentence with the verb and resource front-loaded and the returned fields listed efficiently. No wasted words, though the terse colon-list style leaves no room for qualifying context.

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?

There is no output schema, so the description's enumeration of return fields (description, nutrition, allergens, photo) usefully compensates. For a simple 2-parameter read tool this is largely sufficient, with only the item-number lookup nuance left to the schema.

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 coverage is 100% and both parameters (id, getByItemNumber) are documented in the schema itself, including the numeric-vs-item-number distinction. The description adds no parameter meaning beyond that, so the baseline 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?

Specific verb+resource ('Get menu item details') that clearly names the entity and enumerates the returned facets. It is distinguishable from siblings like get_menu (whole menu) and list_menu_items, though it never explicitly contrasts itself with those siblings.

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 use this versus search_menu_items or list_menu_items, and no mention of prerequisites or the item-number lookup path. The agent must infer usage entirely from the name.

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