statuspage_incidents
Pack: statuspage · Endpoint: https://gateway.pipeworx.io/statuspage/mcp
Incident and outage history for a vendor’s status page — what broke, when, and whether it is fixed. Covers ${VENDOR_COUNT} verified Atlassian Statuspage vendors across AI providers, clouds, developer platforms, payments and communications. Each incident returns its title, lifecycle status (investigating / identified / monitoring / resolved), impact level (none / minor / major / critical), the time it started, the time it resolved, how long it lasted, the affected components, and the text of the latest update the vendor posted. Set unresolved_only to see only incidents that are still open. Use for outage history, past downtime, current incidents and postmortem timelines. Pass status_host for vendors outside the curated map.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
vendor | string | no | Vendor name or key, e.g. “cloudflare”, “github”, “anthropic”. |
status_host | string | no | Statuspage hostname to query directly, e.g. “status.somevendor.com”. Overrides vendor when both are given. |
unresolved_only | boolean | no | Return only incidents that are still open (default false). |
limit | number | no | Maximum incidents to return, 1-50 (default 10). |
include_all_updates | boolean | no | Include the full update timeline for each incident rather than only the latest update (default false). |
Example call
Arguments
{
"vendor": "cloudflare",
"unresolved_only": true
}
curl
curl -X POST https://gateway.pipeworx.io/statuspage/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"statuspage_incidents","arguments":{"vendor":"cloudflare","unresolved_only":true}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('statuspage_incidents', {
"vendor": "cloudflare",
"unresolved_only": true
});
More examples
{
"vendor": "github",
"limit": 3
}
{
"vendor": "anthropic",
"limit": 5,
"include_all_updates": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"statuspage": {
"url": "https://gateway.pipeworx.io/statuspage/mcp"
}
}
}
See Getting Started for client-specific install steps.