all-quiet
Server Details
Manage incidents and on-call: list/create/update incidents, who is on call, on-call overrides.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- m190/usefulapi-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Score is being calculated. Check back soon.
Available Tools
11 toolsallquiet_create_incidentCreate incidentDestructiveInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Incident title (required). | |
| status | Yes | Incident status (required) — free-form, validated by the API; reflects the incident lifecycle (e.g. "Open"/"Resolved"). Confirm valid values for your account. | |
| message | No | Incident message/description. | |
| teamIds | No | Ids of teams to associate with the incident. | |
| severity | Yes | Incident severity (required) — free-form, validated by the API; common values include "Warning", "Minor", "Major", "Critical". Confirm valid values for your account. | |
| serviceIds | No | Ids of affected services. | |
| integrationId | No | Id of the integration that should own/route the incident. | |
| messageIsPublic | No | Whether the message is visible on a public status page. |
allquiet_create_on_call_overrideCreate on-call overrideDestructiveInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | ISO8601 end of the override window. | |
| type | Yes | Override kind (required) — free-form, validated by the API. Confirm valid values for your account. | |
| start | No | ISO8601 start of the override window. | |
| teamId | No | Team id the override applies within. | |
| userId | Yes | The user id the override applies to (required). | |
| escalationTier | No | Escalation tier the override applies to. | |
| replacementUserIds | No | Ids of the replacement user(s) on call. |
allquiet_get_incidentGet incidentRead-onlyInspect
Get a single incident by its id. All Quiet: GET /v1/incident/search/{incidentId}.
| Name | Required | Description | Default |
|---|---|---|---|
| incidentId | Yes | The incident id (required). |
allquiet_get_incident_markdownGet incident as markdownRead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| incidentId | Yes | The incident id (required). |
allquiet_list_incidentsList incidentsRead-onlyInspect
Search/list incidents with filters (status, severity, team, user, search term, archived/snoozed, date range) and pagination. All Quiet: GET /v1/incident/search/list.
| Name | Required | Description | Default |
|---|---|---|---|
| asc | No | Sort ascending (default descending). | |
| limit | No | Max incidents to return. | |
| offset | No | Pagination offset. | |
| sortBy | No | Field to sort by. | |
| teamIds | No | Filter by team id(s). | |
| userIds | No | Filter by assigned user id(s). | |
| statuses | No | Filter by incident status(es). | |
| isArchived | No | Filter by archived state. | |
| searchTerm | No | Free-text search term. | |
| severities | No | Filter by incident severity/severities. | |
| unattended | No | Filter to incidents with no acknowledging user. | |
| createdFrom | No | ISO8601 lower bound on creation time. | |
| createdUntil | No | ISO8601 upper bound on creation time. | |
| includeSnoozed | No | Whether to include snoozed incidents. |
allquiet_list_on_call_overridesList on-call overridesRead-onlyInspect
Search/list on-call overrides for a given user. All Quiet: GET /v1/on-call-override/search/list.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max overrides to return. | |
| offset | No | Pagination offset. | |
| userId | Yes | The user id to list overrides for (required). |
allquiet_list_teamsList teamsRead-onlyInspect
Search/list teams, optionally filtered by display name. All Quiet: GET /v1/team/search/list.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max teams to return. | |
| offset | No | Pagination offset. | |
| displayName | No | Filter by team display name. |
allquiet_list_usersList usersRead-onlyInspect
Search/list users, optionally filtered by email or display name. All Quiet: GET /v1/user/search/list.
| Name | Required | Description | Default |
|---|---|---|---|
| No | Filter by user email. | ||
| limit | No | Max users to return. | |
| offset | No | Pagination offset. | |
| displayName | No | Filter by user display name. |
allquiet_on_call_reportOn-call reportRead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| end | Yes | ISO8601 end of the report window (required). | |
| start | Yes | ISO8601 start of the report window (required). | |
| teamId | No | Filter by team id. | |
| userId | No | Filter by user id. | |
| maxTier | No | Only include escalation tiers up to this number. |
allquiet_update_incidentUpdate incidentDestructiveInspect
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}.
| Name | Required | Description | Default |
|---|---|---|---|
| incidentId | Yes | The incident id to update (required). | |
| appendIntent | No | Lifecycle action/intent to append (e.g. acknowledge/resolve/reopen/snooze — a status transition). Confirm valid values for your account. | |
| intentMessage | No | Optional message to attach to the appended intent. | |
| changeSeverity | No | New severity to set on the incident. |
allquiet_who_is_on_callWho is on callRead-onlyInspect
Get who is currently (or at a given point in time) on call, optionally filtered by team/user. All Quiet: GET /v1/on-call.
| Name | Required | Description | Default |
|---|---|---|---|
| teamIds | No | Filter by team id(s). | |
| userIds | No | Filter by user id(s). | |
| timestamp | No | ISO8601 point-in-time to check (defaults to now). |
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!