Skip to main content
Glama

List locked recipes

list_recipes
Read-onlyIdempotent

List recipes (all or filtered by equipment and status). The id on each row is the number this account knows that record by, counting from 1 — safe to show, and what other tools expect back.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoFilter by status: current, archived, or all. Defaults to current.
bean_idNo
grinder_idNo
machine_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
recipesYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed5 schema fields changed
    • changedOutput schema / properties / recipes / items / properties / dose_g / type
      Previous value: -"number"New value: +[
      +  "integer",
      +  "number"
      +]
    • changedOutput schema / properties / recipes / items / properties / grind_reading / required
      Previous value: -[
      -  "label",
      -  "offset_clicks",
      -  "offset_direction",
      -  "epochs_since",
      -  "unmeasured"
      -]New value: +[]
    • changedOutput schema / properties / recipes / items / properties / grind_reading / type
      Previous value: -"object"New value: +[
      +  "null",
      +  "object"
      +]
    • changedOutput schema / properties / recipes / items / properties / program_id / type
      Previous value: -"integer"New value: +[
      +  "null",
      +  "integer"
      +]
    • changedOutput schema / properties / recipes / items / properties / target_yield_g / type
      Previous value: -[
      -  "number",
      -  "integer"
      -]New value: +[
      +  "integer",
      +  "number"
      +]
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "properties": {
      +    "recipes": {
      +      "items": {
      +        "additionalProperties": true,
      +        "properties": {
      +          "bean_id": {
      +            "type": "integer"
      +          },
      +          "bean_name": {
      +            "type": "string"
      +          },
      +          "dose_g": {
      +            "type": "number"
      +          },
      +          "drink_intent": {
      +            "type": "string"
      +          },
      +          "finish_action": {
      +            "type": "string"
      +          },
      +          "grind_label": {
      +            "type": "string"
      +          },
      +          "grind_position_value": {
      +            "type": "integer"
      +          },
      +          "grind_reading": {
      +            "additionalProperties": true,
      +            "properties": {
      +              "epochs_since": {
      +                "type": "integer"
      +              },
      +              "label": {
      +                "type": "null"
      +              },
      +              "offset_clicks": {
      +                "type": "null"
      +              },
      +              "offset_direction": {
      +                "type": "null"
      +              },
      +              "unmeasured": {
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "label",
      +              "offset_clicks",
      +              "offset_direction",
      +              "epochs_since",
      +              "unmeasured"
      +            ],
      +            "type": "object"
      +          },
      +          "grinder_id": {
      +            "type": "integer"
      +          },
      +          "grinder_name": {
      +            "type": "string"
      +          },
      +          "id": {
      +            "type": "integer"
      +          },
      +          "locked_at": {
      +            "type": "string"
      +          },
      +          "machine_id": {
      +            "type": "integer"
      +          },
      +          "machine_name": {
      +            "type": "string"
      +          },
      +          "profile": {
      +            "type": "string"
      +          },
      +          "program_id": {
      +            "type": "integer"
      +          },
      +          "status": {
      +            "type": "string"
      +          },
      +          "target_time_s": {
      +            "type": "integer"
      +          },
      +          "target_yield_g": {
      +            "type": [
      +              "number",
      +              "integer"
      +            ]
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "bean_id",
      +          "grinder_id",
      +          "machine_id",
      +          "program_id",
      +          "status",
      +          "grind_label",
      +          "grind_position_value",
      +          "dose_g",
      +          "target_yield_g",
      +          "target_time_s",
      +          "finish_action",
      +          "drink_intent",
      +          "profile",
      +          "locked_at",
      +          "bean_name",
      +          "grinder_name",
      +          "machine_name",
      +          "grind_reading"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "recipes"
      +  ],
      +  "type": "object"
      +}
  3. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable behavior beyond those annotations: the id is a per-account, 1-based row number, safe to show, and is the exact value other tools expect back. It does not mention pagination or ordering, but the output schema reduces the need for that.

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?

Two tight sentences: the first covers purpose and filters, the second explains the crucial ID semantics. No waste, no repetition of schema fields, and the most useful operational note (what the id means) is included.

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, optional-filter list tool with an output schema, the description covers the main behavioral contract and ID expectations. The only notable gaps are not saying 'locked recipes' explicitly and not mentioning where bean_id/grinder_id/machine_id values come from, but these are minor given the title, schema, and sibling naming.

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 only 25% (status is documented; bean_id, grinder_id, and machine_id are not). The description adds meaning by grouping the three integer parameters under 'equipment' and by naming 'status' as another filter, which helps an agent infer their role. It does not, however, explain what each equipment parameter refers to or how to source valid IDs.

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?

The description states a specific verb ('List'), a resource ('recipes'), and the available filter dimensions ('equipment and status'), which clearly separates this from sibling list_beans/list_grinders/list_machines. The only weakness is that the description omits the 'locked' qualifier from the title, leaving slight ambiguity about whether this returns all recipes or only locked ones.

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

Usage Guidelines3/5

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

The description implies usage: call this when you need a recipe list, optionally filtered by equipment or status. It does not provide explicit when-not-to-use guidance or name alternative tools, but the sibling set makes resource-based selection reasonably direct. With four list_* siblings, some explicit routing would have improved it.

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

B3.4/5.0
Disambiguation4/5

Most tools target a clearly distinct resource and action, and the list/register/update/set tool families are easy to tell apart. The closest pair is diagnose_preview and diagnose_shot, which are well-described but similar enough in name that an agent could select the wrong one.

Naming Consistency4/5

The overwhelming majority of tools follow a consistent verb_noun pattern (list_beans, register_grinder, update_shot, set_active). Minor exceptions like grinder_math and kb_changelog lack the imperative verb prefix, but they are readable and do not create real confusion.

Tool Count2/5

34 tools is above the 25+ threshold and feels heavy even though the domain is fairly rich. The many parallel list_* and register_* tools for beans, grinders, machines, scales, waters, programs, and recipes could plausibly be consolidated or trimmed without losing core capability.

Completeness3/5

The core shot lifecycle is well covered: log, update, delete, diagnose, and list shots, plus bean registration and maintenance tracking. However, most registered entities lack update/delete tools, and get_rule has no corresponding list_rules tool, leaving some obvious workflow gaps that agents must work around.

Resources