Skip to main content
Glama

recipe_comments_delete_one

Delete a specific recipe comment by UUID. Removes an unwanted comment from a recipe through the Mealie API.

Instructions

Delete One — Recipe: Comments. Delete comment. [DELETE /api/comments/{item_id}] Keywords: recipe_comments_delete_one, recipe comments delete one, delete comment, remove comment, destroy comment, write comment, comment, comments, recipe comments, delete, remove, destroy, write, mealie.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
item_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.11

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and largely fails: it does not say whether deletion is permanent, whether the caller must own the comment, what permissions are required, or what is returned on success. The DELETE verb implies destruction but nothing beyond that is disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The useful content ('Delete One — Recipe: Comments. Delete comment.' plus the endpoint) is front-loaded, but it is followed by roughly thirty redundant keywords ('delete comment, remove comment, destroy comment, write comment, comment, comments, ...') that add no selection value and bloat the definition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive mutation with no annotations and no output schema, the description should explain irreversibility, auth expectations, and error behavior. It supplies only the purpose and endpoint, leaving the agent without enough information to invoke it confidently in edge cases.

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 0% for item_id, so the description must compensate. The route template '[DELETE /api/comments/{item_id}]' does clarify that item_id is the comment identifier used as a path segment, which is real added meaning, but it never states the expected UUID format or what happens with an invalid id.

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?

States a specific verb and resource: 'Delete One — Recipe: Comments. Delete comment.' combined with the DELETE /api/comments/{item_id} route, an agent immediately knows this removes a recipe comment. It does not explicitly differentiate itself from siblings like recipe_comments_update_one or recipe_comments_get_one, but the verb makes the distinction obvious.

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 alternatives (e.g., bulk deletion or updating a comment). The only 'guidance' is a keyword soup including 'delete, remove, destroy, write', which does not tell the agent anything about conditions or prerequisites.

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

Deploy Server

Other Tools