Skip to main content
Glama

list_dishes

Read-onlyIdempotent

List all available master dishes with rich metadata.

This is a browse/discovery step, not the verification itself — after picking a dish, call verify_recipe(dish_name=, candidate_json=) to actually check a candidate against it (or fix_recipe to auto-repair it).

Returns: Dictionary with schema_version, a dishes list (slug, title, cuisine, region, aliases, complexity per dish), and a next_step hint describing how to proceed to verification.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cuisine_filterNoOptional cuisine to filter by. Case-insensitive exact match against the dish's cuisine field. Valid values: italian | french | spanish | british | thai | chinese | indian | indonesian | japanese | malaysian | korean | mexican | american | moroccan | turkish | levantine. Leave empty to return all available dishes.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / cuisine_filter / description
      Previous value: -"Optional cuisine or region to filter by (e.g., 'french', 'chinese', 'italian', 'thai'). Leave empty to return all available dishes."New value: +"Optional cuisine to filter by. Case-insensitive exact match against the dish's cuisine field. Valid values: italian | french | spanish | british | thai | chinese | indian | indonesian | japanese | malaysian | korean | mexican | american | moroccan | turkish | levantine. Leave empty to return all available dishes."
  2. Changed1 schema field changed
    • addedInput schema / properties / cuisine_filter
      Added value: +{
      +  "default": "",
      +  "description": "Optional cuisine or region to filter by (e.g., 'french', 'chinese', 'italian', 'thai'). Leave empty to return all available dishes.",
      +  "type": "string"
      +}
  3. Added
  4. Removed
  5. Changed1 schema field changed
    • addedInput schema / properties / cuisine_filter
      Added value: +{
      +  "default": "",
      +  "description": "Optional cuisine to filter by (e.g., 'french', 'chinese').",
      +  "type": "string"
      +}
  6. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already mark this as read-only and idempotent, so no side-effect warning is needed. The description adds useful behavioral context beyond annotations by describing the return payload (schema_version, dishes list, next_step hint) and framing the tool as a discovery step rather than the verification action itself.

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 well structured: a one-line summary, a concise usage directive with named alternatives, and a compact returns overview. Every sentence adds value, and the most important routing guidance is front-loaded.

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 simple optional-parameter listing tool with a rich output schema and read-only/idempotent annotations, the description is complete. It explains when to use it, what it returns at a high level, and how to proceed to verification, so an agent has enough context to invoke it correctly.

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 the input schema already documents cuisine_filter clearly, including its default, case-insensitive exact-match behavior, valid values, and how to return all dishes. The description adds no extra parameter-level meaning, so the baseline 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 opens with a specific verb-resource pair: 'List all available master dishes with rich metadata.' It clearly distinguishes itself from verification tools by stating it is 'a browse/discovery step, not the verification itself' and explicitly names verify_recipe and fix_recipe as the follow-up tools.

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?

The description gives explicit usage context: use this to browse or discover dishes before verification, then call verify_recipe or fix_recipe afterward. This directly tells the agent when to use this tool and what to use instead for the actual verification step, reducing ambiguity against siblings.

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.