# io.usefulapi/all-quiet (remote · all-quiet.usefulapi.io)

Manage incidents and on-call: list/create/update incidents, who is on call, on-call overrides.

- Trust score: 72/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `all-quiet.usefulapi.io`: 72/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-all-quiet/all-quiet.md), [page](https://verifymcp.io/servers/io-usefulapi-all-quiet/all-quiet)

## Channel facts

- Endpoint: `https://all-quiet.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 78/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 1411 tokens (~128/item across 11 items; 11 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-all-quiet https://all-quiet.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-all-quiet]
url = "https://all-quiet.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-all-quiet": {
      "type": "remote",
      "url": "https://all-quiet.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-all-quiet --url https://all-quiet.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-all-quiet:
    url: "https://all-quiet.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-all-quiet": {
      "type": "http",
      "url": "https://all-quiet.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 72, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 71, +1)

No change was recorded against any check on this day. Stability & Change Management went from 13 to 17. That category is still filling its 30-day observation window: 4 days of observed history at the previous scan, 5 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 70, +3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 67, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 69, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 68, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 68, +56)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 12)

First indexed and scored.

## MCP tools (11)

### `allquiet_list_incidents` (~238 tokens)

List incidents

Search/list incidents with filters (status, severity, team, user, search term, archived/snoozed, date range) and pagination. All Quiet: GET /v1/incident/search/list.

Input parameters:

- `asc` (boolean): Sort ascending (default descending).
- `createdFrom` (string): ISO8601 lower bound on creation time.
- `createdUntil` (string): ISO8601 upper bound on creation time.
- `includeSnoozed` (boolean): Whether to include snoozed incidents.
- `isArchived` (boolean): Filter by archived state.
- `limit` (number): Max incidents to return.
- `offset` (number): Pagination offset.
- `searchTerm` (string): Free-text search term.
- `severities` (array): Filter by incident severity/severities.
- `sortBy` (string): Field to sort by.
- `statuses` (array): Filter by incident status(es).
- `teamIds` (array): Filter by team id(s).
- `unattended` (boolean): Filter to incidents with no acknowledging user.
- `userIds` (array): Filter by assigned user id(s).

### `allquiet_get_incident` (~46 tokens)

Get incident

Get a single incident by its id. All Quiet: GET /v1/incident/search/{incidentId}.

Input parameters:

- `incidentId` (string, required): The incident id (required).

### `allquiet_get_incident_markdown` (~65 tokens)

Get incident as markdown

Get a markdown rendering of a single incident by its id (useful for pasting into a doc or chat). All Quiet: GET /v1/incident/search/{incidentId}/markdown.

Input parameters:

- `incidentId` (string, required): The incident id (required).

### `allquiet_who_is_on_call` (~90 tokens)

Who is on call

Get who is currently (or at a given point in time) on call, optionally filtered by team/user. All Quiet: GET /v1/on-call.

Input parameters:

- `teamIds` (array): Filter by team id(s).
- `timestamp` (string): ISO8601 point-in-time to check (defaults to now).
- `userIds` (array): Filter by user id(s).

### `allquiet_on_call_report` (~120 tokens)

On-call report

Get a summed on-call duration report over a time window, optionally filtered by user/team/escalation tier. All Quiet: GET /v1/on-call-report/sum.

Input parameters:

- `end` (string, required): ISO8601 end of the report window (required).
- `maxTier` (number): Only include escalation tiers up to this number.
- `start` (string, required): ISO8601 start of the report window (required).
- `teamId` (string): Filter by team id.
- `userId` (string): Filter by user id.

### `allquiet_list_teams` (~65 tokens)

List teams

Search/list teams, optionally filtered by display name. All Quiet: GET /v1/team/search/list.

Input parameters:

- `displayName` (string): Filter by team display name.
- `limit` (number): Max teams to return.
- `offset` (number): Pagination offset.

### `allquiet_list_users` (~77 tokens)

List users

Search/list users, optionally filtered by email or display name. All Quiet: GET /v1/user/search/list.

Input parameters:

- `displayName` (string): Filter by user display name.
- `email` (string): Filter by user email.
- `limit` (number): Max users to return.
- `offset` (number): Pagination offset.

### `allquiet_list_on_call_overrides` (~74 tokens)

List on-call overrides

Search/list on-call overrides for a given user. All Quiet: GET /v1/on-call-override/search/list.

Input parameters:

- `limit` (number): Max overrides to return.
- `offset` (number): Pagination offset.
- `userId` (string, required): The user id to list overrides for (required).

### `allquiet_create_incident` (~276 tokens)

Create incident

Creates a new incident on the LIVE account (may trigger alerting/paging). `status` and `severity` are free-form strings the API validates against your account's configuration — common `severity` values include "Warning", "Minor", "Major", "Critical", and `status` reflects the incident lifecycle (e.g. "Open"/"Resolved"); confirm the valid values for your account before calling. All Quiet: POST /v1/incident.

Input parameters:

- `integrationId` (string): Id of the integration that should own/route the incident.
- `message` (string): Incident message/description.
- `messageIsPublic` (boolean): Whether the message is visible on a public status page.
- `serviceIds` (array): Ids of affected services.
- `severity` (string, required): Incident severity (required) — free-form, validated by the API; common values include "Warning", "Minor", "Major", "Critical". Confirm valid values for your account.
- `status` (string, required): Incident status (required) — free-form, validated by the API; reflects the incident lifecycle (e.g. "Open"/"Resolved"). Confirm valid values for your account.
- `teamIds` (array): Ids of teams to associate with the incident.
- `title` (string, required): Incident title (required).

### `allquiet_update_incident` (~159 tokens)

Update incident

Applies an operation to an existing LIVE incident: change its severity and/or append an intent (a lifecycle action such as acknowledge/resolve/reopen/snooze — a status transition). At least one of `changeSeverity` or `appendIntent` is required. All Quiet: PATCH /v1/incident/{incidentId}.

Input parameters:

- `appendIntent` (string): Lifecycle action/intent to append (e.g. acknowledge/resolve/reopen/snooze — a status transition). Confirm valid values for your account.
- `changeSeverity` (string): New severity to set on the incident.
- `incidentId` (string, required): The incident id to update (required).
- `intentMessage` (string): Optional message to attach to the appended intent.

### `allquiet_create_on_call_override` (~201 tokens)

Create on-call override

Creates an on-call override for a user on the LIVE account (temporarily changes who is on call). `type` is a free-form override kind and `start`/`end` govern the override window — confirm the valid `type` values for your account. All Quiet: POST /v1/on-call-override.

Input parameters:

- `end` (string): ISO8601 end of the override window.
- `escalationTier` (number): Escalation tier the override applies to.
- `replacementUserIds` (array): Ids of the replacement user(s) on call.
- `start` (string): ISO8601 start of the override window.
- `teamId` (string): Team id the override applies within.
- `type` (string, required): Override kind (required) — free-form, validated by the API. Confirm valid values for your account.
- `userId` (string, required): The user id the override applies to (required).

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-all-quiet/all-quiet#diagnostics

## Score history

- 2026-08-03: 72
- 2026-08-02: 71
- 2026-08-01: 71
- 2026-07-31: 70
- 2026-07-30: 67
- 2026-07-29: 69
- 2026-07-28: 68
- 2026-07-27: 68
- 2026-07-26: 12

## Links

- Remote endpoint: https://all-quiet.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-all-quiet/all-quiet/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-all-quiet/all-quiet/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-all-quiet/all-quiet
