{
  "info": {
    "name": "Instatus — mcp.ai",
    "description": "REST API for the Instatus 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/instatus",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "instatus_add_incident_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/incident/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "incident",
            "update"
          ]
        },
        "description": "Post a public lifecycle update to an Instatus incident and change affected component states. This can send external notifications to page and affected-component subscribers when notify is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"notify\": false,\n  \"status\": \"\",\n  \"message\": \"\",\n  \"page_id\": \"\",\n  \"started_at\": \"\",\n  \"incident_id\": \"\",\n  \"component_ids\": \"\",\n  \"component_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_add_maintenance_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/maintenance/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "maintenance",
            "update"
          ]
        },
        "description": "Post a public progress update to an Instatus maintenance, optionally changing its lifecycle, timing, and affected component states. This can send external notifications to page and affected-component ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_at\": \"\",\n  \"notify\": false,\n  \"status\": \"\",\n  \"message\": \"\",\n  \"page_id\": \"\",\n  \"started_at\": \"\",\n  \"component_ids\": \"\",\n  \"maintenance_id\": \"\",\n  \"component_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_create_component",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/component",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "component"
          ]
        },
        "description": "Create a component on an Instatus status page. This changes the page's component configuration and can make the new component and its initial health status publicly visible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"order\": 0,\n  \"status\": \"\",\n  \"grouped\": false,\n  \"page_id\": \"\",\n  \"group_id\": \"\",\n  \"description\": \"\",\n  \"show_uptime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_create_incident",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/incident",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "incident"
          ]
        },
        "description": "Create an incident on an Instatus status page with optional affected component states. The incident is published publicly by default; notify=true can send notifications to page and affected-component ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"notify\": false,\n  \"status\": \"\",\n  \"message\": \"\",\n  \"page_id\": \"\",\n  \"started_at\": \"\",\n  \"component_ids\": \"\",\n  \"should_publish\": false,\n  \"component_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_create_maintenance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/maintenance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "maintenance"
          ]
        },
        "description": "Schedule or start a maintenance on an Instatus status page. The required notification controls are side-effecting: notify can contact subscribers immediately, while notify_start, notify_end, and notif",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"end_at\": \"\",\n  \"notify\": false,\n  \"status\": \"\",\n  \"message\": \"\",\n  \"page_id\": \"\",\n  \"auto_end\": false,\n  \"start_at\": \"\",\n  \"expand_at\": \"\",\n  \"auto_start\": false,\n  \"notify_end\": false,\n  \"is_collapsed\": false,\n  \"notify_early\": false,\n  \"notify_start\": false,\n  \"component_ids\": \"\",\n  \"notify_minutes\": 0,\n  \"duration_minutes\": 0,\n  \"component_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_get_component",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/component",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "component"
          ]
        },
        "description": "Get the current health and configuration of one component on an Instatus status page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\",\n  \"component_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_get_incident",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/incident",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "incident"
          ]
        },
        "description": "Get one Instatus incident with its affected components and update history.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\",\n  \"incident_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_get_maintenance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/maintenance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "maintenance"
          ]
        },
        "description": "Get one Instatus maintenance with its schedule, affected components, automation settings, and update history.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\",\n  \"maintenance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_list_components",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/components",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "components"
          ]
        },
        "description": "List components and their current health for one Instatus status page, including child components where present. Pass the response's next_cursor back unchanged to fetch another page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_list_incidents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/incidents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "incidents"
          ]
        },
        "description": "List incidents for an Instatus status page, optionally including or excluding lifecycle statuses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"exclude_statuses\": \"\",\n  \"include_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_list_maintenances",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/maintenances",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "maintenances"
          ]
        },
        "description": "List scheduled and historical maintenances for an Instatus status page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_id\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_list_status_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/status/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "status",
            "pages"
          ]
        },
        "description": "List status pages available to the connected Instatus account so an agent can discover page IDs for component, incident, and maintenance operations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"per_page\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_update_component",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/component",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "component"
          ]
        },
        "description": "Change a component's health or presentation on an Instatus status page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"order\": 0,\n  \"status\": \"\",\n  \"grouped\": false,\n  \"page_id\": \"\",\n  \"description\": \"\",\n  \"show_uptime\": false,\n  \"component_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_update_incident",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/incident",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "incident"
          ]
        },
        "description": "Edit an existing Instatus incident's name, timing, lifecycle status, affected components, or component states. Setting notify to true sends notifications to page and affected-component subscribers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"notify\": false,\n  \"status\": \"\",\n  \"page_id\": \"\",\n  \"started_at\": \"\",\n  \"incident_id\": \"\",\n  \"component_ids\": \"\",\n  \"component_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "instatus_update_maintenance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/maintenance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "maintenance"
          ]
        },
        "description": "Fully replace an Instatus maintenance's public message, schedule, lifecycle state, affected components and states, and automation settings. Call INSTATUS_GET_MAINTENANCE first and preserve unchanged v",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"end_at\": \"\",\n  \"notify\": false,\n  \"status\": \"\",\n  \"message\": \"\",\n  \"page_id\": \"\",\n  \"auto_end\": false,\n  \"start_at\": \"\",\n  \"auto_start\": false,\n  \"component_ids\": \"\",\n  \"maintenance_id\": \"\",\n  \"duration_minutes\": 0,\n  \"component_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}