Skip to main content
Glama

engine_html_remove

Delete a template view by its path to remove it from the Melbis Shop storefront. Use this action to clean up outdated or unused page templates.

Instructions

Delete a template view by its path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv6.5.1

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('Delete') but does not disclose whether deletion is permanent, whether it cascades to related resources, whether confirmation is required, or what happens if the path does not exist. This is a destructive operation with minimal behavioral context.

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

Conciseness4/5

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

The description is a single, short sentence that is easy to parse and front-loads the action. It is appropriately concise, though it could add a bit more context without becoming verbose.

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 tool with no annotations, no output schema, and a single undocumented parameter, the description is too thin. An agent would not know the path format, the permanence of deletion, or the success/failure behavior. Sibling tools like engine_static_remove and engine_template_remove suggest a family of similar operations, but the description does not clarify how this one differs.

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%, so the description must compensate for the undocumented 'path' parameter. The description says 'by its path' but does not explain what format the path should take, whether it is a file path, a URL path, or a template identifier, or how it relates to paths used by sibling tools like engine_html_save.

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?

The description states a specific verb ('Delete') and resource ('a template view') identified by path, which clearly distinguishes it from sibling tools like engine_html_save, engine_html_add, and engine_html_rename. It is concise and unambiguous, though it does not explicitly name a sibling alternative.

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 is provided about when to use this tool versus alternatives such as engine_static_remove or engine_template_remove. The description implies deletion by path but does not clarify prerequisites, such as whether the template view must exist or whether deletion is permanent.

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