Skip to main content
Glama

List espresso machines

list_machines
Read-onlyIdempotent

List machines registered for the account, with status filter. 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.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
machinesYes

Schema Changelog

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

  1. Changed5 schema fields changed
    • changedOutput schema / properties / machines / items / properties / basket_size_grams / type
      Previous value: -"integer"New value: +[
      +  "null",
      +  "integer"
      +]
    • changedOutput schema / properties / machines / items / properties / boiler_type / type
      Previous value: -"string"New value: +[
      +  "null",
      +  "string"
      +]
    • changedOutput schema / properties / machines / items / properties / prep_style / type
      Previous value: -"null"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / machines / items / properties / prep_type / type
      Previous value: -"null"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / machines / items / properties / programs / items / properties / description / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "properties": {
      +    "machines": {
      +      "items": {
      +        "additionalProperties": true,
      +        "properties": {
      +          "archived": {
      +            "type": "integer"
      +          },
      +          "basket_size_grams": {
      +            "type": "integer"
      +          },
      +          "boiler_type": {
      +            "type": "string"
      +          },
      +          "built_in_grinder_id": {
      +            "type": "null"
      +          },
      +          "control_type": {
      +            "type": "string"
      +          },
      +          "id": {
      +            "type": "integer"
      +          },
      +          "name": {
      +            "type": "string"
      +          },
      +          "notes": {
      +            "type": "null"
      +          },
      +          "prep_style": {
      +            "type": "null"
      +          },
      +          "prep_type": {
      +            "type": "null"
      +          },
      +          "programs": {
      +            "items": {
      +              "additionalProperties": true,
      +              "properties": {
      +                "description": {
      +                  "type": "string"
      +                },
      +                "id": {
      +                  "type": "integer"
      +                },
      +                "is_active": {
      +                  "type": "integer"
      +                },
      +                "program_number": {
      +                  "type": "integer"
      +                },
      +                "program_type": {
      +                  "type": "string"
      +                },
      +                "target_time_s": {
      +                  "type": "null"
      +                },
      +                "target_volume_g": {
      +                  "type": "integer"
      +                },
      +                "volume_source": {
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "id",
      +                "program_number",
      +                "program_type",
      +                "target_volume_g",
      +                "target_time_s",
      +                "volume_source",
      +                "description",
      +                "is_active"
      +              ],
      +              "type": "object"
      +            },
      +            "type": "array"
      +          },
      +          "tools_list": {
      +            "type": "array"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "name",
      +          "control_type",
      +          "basket_size_grams",
      +          "boiler_type",
      +          "notes",
      +          "prep_type",
      +          "prep_style",
      +          "archived",
      +          "built_in_grinder_id",
      +          "tools_list",
      +          "programs"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "machines"
      +  ],
      +  "type": "object"
      +}
  3. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover the read-only and non-destructive nature of the tool. The description adds valuable behavioral detail about the 'id' field: it is account-relative, safe to display, and expected by other tools. This goes beyond the structured annotations and clarifies an important operational contract.

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 compact and front-loaded, with the primary action stated first. The additional sentence about 'id' semantics earns its place by conveying a subtle and important detail that agents need for correct downstream calls.

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 list operation with a single optional parameter, rich annotations, an output schema, and a clear account-scoped resource, the description covers everything needed. It explains the filtering behavior and the meaning of the returned identifiers, leaving no critical gap.

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%, with the 'status' parameter fully documented via enum and default. The description only mentions 'with status filter' without adding new semantic detail, so it meets the baseline but does not elevate it.

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 clearly states a specific verb ('List') and resource ('machines registered for the account'), and includes the status filter. This unambiguously differentiates it from the many other list_* siblings such as list_beans or list_grinders.

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

Usage Guidelines4/5

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

The description gives clear context on what is listed (machines registered for the account) and how filtering works, but does not explicitly mention alternatives or when not to use it. For a simple resource-specific listing tool, this context is generally sufficient.

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