UptimeRobot
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.
Remote vantajco/uptime
Remote (network-hosted)
Other tools also called create_maintenance_window?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Window title, e.g. 'Database migration'"
},
"ends_at": {
"type": "string",
"description": "ISO 8601 datetime with offset - must be after starts_at"
},
"timezone": {
"type": "string",
"description": "IANA timezone for display (default UTC)"
},
"starts_at": {
"type": "string",
"description": "ISO 8601 datetime with offset, e.g. 2026-07-12T02:00:00Z"
},
"project_id": {
"type": "string",
"description": "Project ID (from list_projects)"
},
"description": {
"type": "string",
"description": "Optional details shown alongside the window"
},
"monitor_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Monitors whose alerts to suppress (from list_monitors)"
}
}
}