---
title: "close_incident"
description: "Manually close an active incident."
sidebarTitle: "close_incident"
lastUpdated: "2026-09-23"
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

{/* GENERATED FILE: do not edit by hand. Regenerate with: node scripts/generate.mjs */}

Manually close an active incident.

<Warning>
  **Destructive · Writes data · Idempotent · Calls external systems.** This tool can modify or delete data. Review the arguments before letting an agent call it.
</Warning>

## Parameters

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `incident_id` | number | Yes | Incident ID to close |
| `operator` | string | Yes | Operator slug (required for permission scoping) |

## Example arguments

Illustrative arguments an agent supplies when calling this tool:

```json
{
  "operator": "string",
  "incident_id": 0
}
```

## Description

```text
Sets the incident status to MANUALLY_CLOSED. Use list_incidents status=OPEN to find active incidents first.
```

## Related

- [`list_incidents`](/mcp/tools/alerting/list_incidents)

## What's next?

<Columns cols={2}>
  <Card title="All MCP tools" icon="robot" href="/mcp/tools/overview">
    Browse the full tool reference by category.
  </Card>
  <Card title="Connect a client" icon="plug" href="/mcp/connect">
    Point Claude, Cursor, or Claude Code at the server.
  </Card>
</Columns>
