Skip to main content
Glama
Rubio-Enterprises

grocy-mcp

Meal Plan Remove Tool

meal_plan_remove_tool

Remove a specific meal plan entry using its ID to keep your meal schedule accurate and up to date.

Instructions

Remove an entry from the meal plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entry_idYesThe meal plan entry ID (from meal_plan_list_tool output).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It only says 'Remove an entry' without mentioning side effects, irreversibility, permissions, or error behavior. It does not even explicitly state that the removal is permanent, which is a significant gap for a mutation tool.

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 a single, clear sentence with no filler. It is front-loaded and concise, making it efficient for an agent to parse.

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?

While the tool is simple with one parameter, the description lacks critical context such as whether the operation is irreversible, what happens on failure (e.g., invalid entry_id), or any return value. Although an output schema exists, the description does not mention any outcome, leaving the agent with incomplete information for a mutation.

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?

The schema has 100% coverage for the only parameter (entry_id), including its source from meal_plan_list_tool. The description adds no additional parameter information beyond the schema, so it meets the baseline of 3 but does not exceed 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 uses a specific verb ('Remove') and resource ('an entry from the meal plan'), clearly distinguishing it from siblings like meal_plan_add_tool and meal_plan_list_tool. It unambiguously states what the tool does.

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 does not explicitly mention when to use this tool versus alternatives, but it implies usage by stating the action. The parameter hint that entry_id comes from meal_plan_list_tool output provides some context for usage, but there is no explicit guidance on exclusions or alternative tools.

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