Skip to main content
Glama

Vantaj Uptime MCP

Create maintenance window

create_maintenance_window

Schedule a one-time maintenance window: the listed monitors keep running but their alerts are suppressed between starts_at and ends_at. Use before deploys or planned downtime.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesWindow title, e.g. 'Database migration'
ends_atYesISO 8601 datetime with offset - must be after starts_at
timezoneNoIANA timezone for display (default UTC)
starts_atYesISO 8601 datetime with offset, e.g. 2026-07-12T02:00:00Z
project_idYesProject ID (from list_projects)
descriptionNoOptional details shown alongside the window
monitor_idsYesMonitors whose alerts to suppress (from list_monitors)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYesThe resource object

TDQS

A4.3/5.0
Behavior4/5

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

The annotations (readOnlyHint false, idempotentHint false, etc.) only indicate side effects, but the description adds key behavioral context: alerts are suppressed while monitors keep running, and the window is one-time. This goes beyond the structured flags, though it does not mention issues like overlapping windows or permissions.

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?

Two sentences, front-loaded with the purpose, followed by a usage hint. Every clause adds value and there is no redundancy or unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a create-style tool with 7 parameters, the description covers the core behavior, the temporal scope, and a common use case. The presence of a detailed input schema and output schema means the description does not need to enumerate return values or every constraint. It is complete for an agent to select and invoke 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 description coverage is 100%, so the baseline is 3. The description references starts_at and ends_at, but the schema already explains each parameter in detail, including 'from list_projects' and 'Monitors whose alerts to suppress.' The description does not add significant meaning beyond the schema.

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 and resource: 'Schedule a one-time maintenance window.' It further clarifies the effect by explaining that 'the listed monitors keep running but their alerts are suppressed between starts_at and ends_at,' which clearly distinguishes it from sibling tools like pause_monitor and create_monitor.

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?

It provides clear usage context with 'Use before deploys or planned downtime,' which tells the agent when to invoke this tool. It does not explicitly name alternative tools or exclusion scenarios, but the context is strong enough to differentiate from pausing or creating monitors.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Every tool targets a distinct resource-action pair. Monitor-related tools use distinct verbs (create, get, list, update, pause, resume), and the two alert-suppression mechanisms (maintenance window vs pause) are clearly differentiated in descriptions.

Naming Consistency5/5

All tools follow a consistent lowercase verb_noun pattern (create_, get_, list_, update_, pause_, resume_). No mixing of conventions.

Tool Count5/5

13 tools provide a comprehensive but focused interface for uptime monitoring, well within the ideal range.

Completeness3/5

The set lacks a delete operation for monitors, an important part of the monitor lifecycle, and maintenance windows can be created but not listed or updated. Core monitoring operations are covered, but these gaps could require workarounds.

Resources