Skip to main content
Glama

groups_reports_delete_one

Remove a single group report from Mealie by its ID. Useful for deleting reports that are no longer needed.

Instructions

Delete One — Groups: Reports. Delete report. [DELETE /api/groups/reports/{item_id}] Keywords: groups_reports_delete_one, groups reports delete one, delete report, remove report, destroy report, write report, report, reports, groups reports, groups, 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.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It states 'Delete report,' which conveys a destructive mutation, but does not disclose whether deletion is permanent or soft, what permissions are required, or what the response contains.

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 information is front-loaded, but the large keyword list is redundant and wastes space without adding meaning. It is not appropriately concise despite the clear opening sentence.

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 delete operation with no annotations and no output schema, the description should explain destructive behavior, permission requirements, and return expectations. It only restates the action and endpoint, leaving major behavioral gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain the single required parameter 'item_id' beyond the endpoint notation /api/groups/reports/{item_id}. The schema already provides the uuid4 format, and the description adds no further semantic meaning for the parameter.

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 states a specific verb and resource: 'Delete report' within the Groups: Reports scope. It clearly distinguishes this operation from sibling read tools like groups_reports_get_one and groups_reports_get_all by naming the delete action.

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?

The description provides no guidance on when to use this tool versus alternatives, no prerequisites, and no conditions or exclusions. An agent must infer usage entirely from the tool name and sibling context.

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