statuspage_check
Pack: statuspage · Endpoint: https://gateway.pipeworx.io/statuspage/mcp
Is a service down right now? Live service status, outage and uptime check for ${VENDOR_COUNT} vendors that publish an Atlassian Statuspage — OpenAI, Anthropic/Claude, GitHub, Cloudflare, Vercel, Netlify, DigitalOcean, MongoDB, Snowflake, Datadog, Twilio, SendGrid, Zoom, Discord, Shopify, Coinbase, Plaid, Figma, Dropbox, Atlassian/Jira and more. Returns the current status indicator (none / minor / major / critical / maintenance), the vendor’s own status line such as “All Systems Operational” or “Partial System Outage”, every component currently degraded or offline, open incidents with their latest update text and how long they have been running, and upcoming scheduled maintenance where the page publishes it. Use for questions about downtime, outages, service health, incidents in progress and whether an API or platform is working. Pass status_host to check any other vendor running a Statuspage.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
vendor | string | no | Vendor name or key, forgiving about case and spacing: “openai”, “OpenAI”, “open ai”, “github”, “claude”, “cloudflare”. Call statuspage_list_vendors for the full covered set. |
status_host | string | no | Statuspage hostname to query directly, e.g. “status.somevendor.com”. Use for any vendor outside the curated map. Overrides vendor when both are given. |
include_components | boolean | no | Include every component and its status, rather than only the degraded ones (default false). |
Example call
Arguments
{
"vendor": "openai"
}
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_check","arguments":{"vendor":"openai"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('statuspage_check', {
"vendor": "openai"
});
More examples
{
"vendor": "cloudflare"
}
{
"vendor": "twilio",
"include_components": true
}
{
"status_host": "status.discord.com"
}
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.