Skip to main content
Glama

delete_maintenance_window

Remove a scheduled maintenance window by UID to prevent it from affecting monitoring and alerting.

Instructions

Delete a maintenance window by UID (soft delete).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYesMaintenance window UID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.32.1

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does disclose the key trait that this is a soft delete rather than a permanent deletion, which is valuable, but it does not explain consequences such as reversibility, idempotency, or effects on associated checks.

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?

A single, front-loaded sentence conveys the operation, target, input, and deletion mode with no wasted words. Every element earns its place.

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?

For a one-parameter tool with no output schema, the description is nearly complete: it identifies the required input and the soft-delete behavior. It leaves minor gaps around return value and error conditions, but those are not essential for invoking the tool correctly.

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?

Schema coverage is 100% and the single uid parameter is already described as 'Maintenance window UID.' The description's 'by UID' reinforces the parameter's role without adding new format or constraint details, so the baseline of 3 applies.

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 action ('Delete'), the resource ('maintenance window'), and the key input ('by UID'), and adds the important qualifier 'soft delete.' This clearly distinguishes it from sibling tools such as create_maintenance_window, update_maintenance_window, and get_maintenance_window.

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 update_maintenance_window for modifications or set_maintenance_window_checks for changing associations. The agent must infer usage from the tool name and schema.

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