statuspage_multi_check
Pack: statuspage · Endpoint: https://gateway.pipeworx.io/statuspage/mcp
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 indicator, the vendor’s status line, open incident count and degraded component count, plus a roll-up naming which are operational, which are degraded or in an outage, and which could not be reached. Use for dependency health sweeps, incident triage across a stack, and monitoring a set of upstream APIs in one call.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
vendors | array | yes | Vendor names/keys, or bare Statuspage hostnames (anything containing a dot is treated as a host). 1-20 entries, e.g. [“openai”, “anthropic”, “github”, “cloudflare”]. |
items | string | no |
Example call
Arguments
{
"vendors": [
"openai",
"anthropic",
"github",
"cloudflare"
]
}
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_multi_check","arguments":{"vendors":["openai","anthropic","github","cloudflare"]}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('statuspage_multi_check', {
"vendors": [
"openai",
"anthropic",
"github",
"cloudflare"
]
});
More examples
{
"vendors": [
"supabase",
"vercel",
"netlify",
"mongodb"
]
}
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.