engine_template_remove
Delete a template group from Melbis Shop by providing its name. This removes the group and its associated design structures.
Instructions
Delete a template group.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| template | Yes |
Delete a template group from Melbis Shop by providing its name. This removes the group and its associated design structures.
Delete a template group.
| Name | Required | Description | Default |
|---|---|---|---|
| template | Yes |
Changes observed during successful MCP inspections.
v6.5.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states that a template group is deleted, with no disclosure of irreversibility, side effects, permissions, or what happens to templates within the group.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence with no filler. It is front-loaded and easy to parse, which is appropriate for such a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive operation with no annotations, output schema, or parameter documentation, the description is too sparse. It leaves out safety-relevant context and does not clarify the template parameter, making it barely sufficient for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 compensate by explaining what the 'template' parameter should contain. An agent cannot infer the expected value format or identifier semantics from the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Delete') and resource ('a template group'), matching the tool name precisely. It clearly distinguishes this from sibling tools like engine_template_add and engine_template_rename.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternatives, such as engine_template_rename or the various other *_remove tools. The intended use is only implied by the name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.