{
  "info": {
    "name": "Uptimerobot — mcp.ai",
    "description": "REST API for the Uptimerobot MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/uptimerobot",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "uptimerobot_add_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "monitor"
          ]
        },
        "description": "Tool to create a new monitor. Use when you need to start monitoring a URL or service; call after obtaining a valid API key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ssl\": 0,\n  \"url\": \"\",\n  \"port\": 0,\n  \"type\": 0,\n  \"subtype\": 0,\n  \"timeout\": 0,\n  \"interval\": 0,\n  \"mwindows\": \"\",\n  \"keyword_type\": 0,\n  \"friendly_name\": \"\",\n  \"http_password\": \"\",\n  \"http_username\": \"\",\n  \"keyword_value\": \"\",\n  \"alert_contacts\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_delete_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "monitor"
          ]
        },
        "description": "Tool to delete a monitor. Use when you need to remove an existing monitor by its ID; use after confirming the monitor ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_edit_maintenance_window",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/maintenance/window",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "maintenance",
            "window"
          ]
        },
        "description": "Tool to edit an existing maintenance window. Use when you need to update its name, timing, recurrence, or duration after confirming the window ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"type\": 0,\n  \"value\": \"\",\n  \"duration\": 0,\n  \"start_time\": \"\",\n  \"friendly_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_edit_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "monitor"
          ]
        },
        "description": "Tool to edit an existing monitor. Use after confirming the monitor ID exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"ssl\": 0,\n  \"url\": \"\",\n  \"port\": 0,\n  \"type\": 0,\n  \"subtype\": 0,\n  \"timeout\": 0,\n  \"interval\": 0,\n  \"post_type\": 0,\n  \"ignore_ssl\": 0,\n  \"post_value\": \"\",\n  \"verify_ssl\": 0,\n  \"http_method\": \"\",\n  \"keyword_type\": 0,\n  \"friendly_name\": \"\",\n  \"http_password\": \"\",\n  \"http_username\": \"\",\n  \"keyword_value\": \"\",\n  \"alert_contacts\": \"\",\n  \"custom_http_headers\": {},\n  \"maintenance_windows\": \"\",\n  \"up_uptime_threshold\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_edit_public_status_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/public/status/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "public",
            "status",
            "page"
          ]
        },
        "description": "Tool to edit an existing public status page. Use after confirming the page ID. Updates friendly name, monitor set, domain, and status options in one call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"sort\": 0,\n  \"status\": 0,\n  \"monitors\": \"\",\n  \"password\": \"\",\n  \"custom_domain\": \"\",\n  \"friendly_name\": \"\",\n  \"hide_url_links\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_get_account_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "details"
          ]
        },
        "description": "Tool to retrieve account details. Use after authenticating with a valid API key to fetch account metrics.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_get_alert_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/alert/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "alert",
            "contacts"
          ]
        },
        "description": "Tool to retrieve all alert contacts configured for the account. Use when you need to list available notification channels.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_get_maintenance_window",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/maintenance/window",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "maintenance",
            "window"
          ]
        },
        "description": "Tool to retrieve a specific maintenance window by ID. Use when you need to get detailed information about a single maintenance window.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_get_maintenance_windows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/maintenance/windows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "maintenance",
            "windows"
          ]
        },
        "description": "Tool to retrieve maintenance windows. Use after confirming a valid API key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"mwindows\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_get_monitors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/monitors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "monitors"
          ]
        },
        "description": "Tool to fetch monitor details and status. Use after confirming account connection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"logs\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"types\": \"\",\n  \"offset\": 0,\n  \"search\": \"\",\n  \"monitors\": \"\",\n  \"statuses\": \"\",\n  \"alert_contacts\": 0,\n  \"response_times\": 0,\n  \"custom_uptime_ranges\": \"\",\n  \"custom_uptime_ratios\": \"\",\n  \"response_times_limit\": 0,\n  \"response_times_end_date\": 0,\n  \"all_time_uptime_durations\": \"\",\n  \"response_times_start_date\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_get_public_status_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/public/status/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "public",
            "status",
            "pages"
          ]
        },
        "description": "Tool to retrieve public status pages. Use after confirming API credentials to list all public status pages for an account. Supports pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_list_integrations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/integrations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "integrations"
          ]
        },
        "description": "Tool to list all integrations. Use to retrieve configured integrations for the account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_list_psps",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/psps",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "psps"
          ]
        },
        "description": "Tool to list public status pages using the v3 API. Use to retrieve all PSPs with cursor-based pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_new_maintenance_window",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/new/maintenance/window",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "new",
            "maintenance",
            "window"
          ]
        },
        "description": "Tool to create a new maintenance window. Use after confirming window parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"day\": 0,\n  \"type\": 0,\n  \"value\": 0,\n  \"monitors\": \"\",\n  \"start_time\": 0,\n  \"friendly_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uptimerobot_new_public_status_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/new/public/status/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "new",
            "public",
            "status",
            "page"
          ]
        },
        "description": "Tool to create a new public status page. Use when you want to publish a public status page for selected monitors after specifying a friendly name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": 0,\n  \"status\": 0,\n  \"monitors\": \"\",\n  \"password\": \"\",\n  \"custom_url\": \"\",\n  \"friendly_name\": \"\",\n  \"custom_domains\": \"\",\n  \"hide_url_links\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}