{
  "info": {
    "name": "Rootly — mcp.ai",
    "description": "REST API for the Rootly 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/rootly",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "rootly_delete_action_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/action/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "action",
            "item"
          ]
        },
        "description": "This tool allows for the deletion of a specific action item in Rootly. It complements the existing ROOTLY_LIST_ACTION_ITEMS functionality by providing the ability to remove individual action items fro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rootly_delete_incident",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/incident",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "incident"
          ]
        },
        "description": "Tool to delete an incident in Rootly by ID. Use when performing administrative cleanup. This is a destructive operation and depends on appropriate Rootly permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rootly_get_action_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/action/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "action",
            "item"
          ]
        },
        "description": "Retrieves detailed information about a specific action item by its ID from Rootly. Action items are tasks or follow-up items created during incident management to track work that needs to be completed",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rootly_get_incident",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/incident",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "incident"
          ]
        },
        "description": "Tool to retrieve full details for a single Rootly incident by ID. Use when you need complete incident information for drill-down after listing or searching incidents. Supports optional include paramet",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"include\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rootly_list_action_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/action/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "action",
            "items"
          ]
        },
        "description": "This tool retrieves a list of all action items for an organization in Rootly. Action items are tasks or follow-up items that need to be completed during or after an incident, helping to track and mana",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"kind\": \"\",\n  \"status\": \"\",\n  \"priority\": \"\",\n  \"page_size\": 0,\n  \"page_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rootly_update_incident",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/incident",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "incident"
          ]
        },
        "description": "Tool to update fields on an existing Rootly incident by ID. Use when you need to modify incident status, severity, metadata, or other attributes. Supports updating title, status, summary, severity_id,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"data\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}