Skip to main content
Glama
Smartoire

Paxaver MCP Server

Official

delete_menu_item

Destructive

Soft-delete a menu item from the school lunch platform. Requires coordinator roles and user confirmation before this destructive action.

Instructions

ADMIN: Soft-deletes a menu item. Requires pac_cordinator or lunch_cordinator role. DESTRUCTIVE operation - confirm with the user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
menu_item_idYes
restaurant_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
deletedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.4.3

TDQS

A4.3/5.0
Behavior5/5

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

Discloses three behavioral facts beyond annotations: the operation is a soft-delete, it requires specific admin roles, and the user should be asked for confirmation before executing. The annotations only flag destructiveHint, so the description adds meaningful transparency without contradicting them.

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?

One short, front-loaded sentence conveys the key facts: admin scope, soft-delete behavior, role requirements, and user confirmation. Every word earns its place with no redundancy.

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?

Combined with annotations and an output schema, the description covers the essential decision-making facts: authorization, destructive intent, soft-delete semantics, and confirmation. It does not detail what soft-delete means practically (e.g., whether the item disappears from menus or can be restored), which is a minor gap.

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?

The schema has no parameter descriptions and the description does not explain 'restaurant_id' or 'menu_item_id'. While the names are self-explanatory, the description adds no semantic nuance beyond the schema itself, and with 0% schema coverage it was expected to compensate.

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?

Begins with 'ADMIN: Soft-deletes a menu item', naming the exact action and resource with a specific verb. 'Soft-deletes' distinguishes it from permanent deletion, and the resource name distinguishes it from sibling create/update/list tools.

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?

States the required roles ('pac_cordinator or lunch_cordinator') and explicitly says to confirm with the user before performing the destructive operation. It does not explicitly name alternatives or say when not to use it, but the tool name and admin-only scope make the intended use reasonably clear.

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