Service Status (Statuspage)
live DevelopersIs a vendor down right now? Live status, degraded components and open incidents for 123 verified providers — AI and model APIs, clouds, developer platforms, payments and comms.
Tools
statuspage_check 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, Netli
No parameters required.
Try it
statuspage_incidents 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
No parameters required.
Try it
statuspage_list_vendors Which companies this service-status pack can answer for: ${VENDOR_COUNT} verified Atlassian Statuspage hosts across AI and model providers, cloud and hosting, databases and observability, developer to
No parameters required.
Try it
statuspage_multi_check Check the live service status of several vendors at once — "are any of my providers down right now?". Takes a list of vendor names or Statuspage hostnames and returns one compact row each: status indi
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/statuspage/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/statuspage/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"statuspage_check","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("statuspage_check", {}); // Or ask in plain English:
const answer = await px.ask("is a vendor down right now? live status, degraded components and open incidents for 123 verified providers — ai and model apis, clouds, developer platforms, payments and comms");