get_platform_status
Pack: pipeworx-catalog · Endpoint: https://gateway.pipeworx.io/pipeworx-catalog/mcp
Check Pipeworx platform health and availability. Returns pack count, active tool count, and any service alerts. Use to verify system status before operations.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/pipeworx-catalog/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_platform_status","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_platform_status', {});
Response shape
Always returns: gateway, website, monitored_apis, live, degraded, down, overall_status
| Field | Type | Description |
|---|---|---|
gateway | string | Pipeworx gateway URL |
website | string | Pipeworx website URL |
monitored_apis | number | Total number of monitored APIs |
live | number | Number of live APIs |
degraded | number | Number of degraded APIs |
down | number | Number of down APIs |
overall_status | string | Overall platform status |
Full JSON Schema
{
"type": "object",
"properties": {
"gateway": {
"type": "string",
"description": "Pipeworx gateway URL"
},
"website": {
"type": "string",
"description": "Pipeworx website URL"
},
"monitored_apis": {
"type": "number",
"description": "Total number of monitored APIs"
},
"live": {
"type": "number",
"description": "Number of live APIs"
},
"degraded": {
"type": "number",
"description": "Number of degraded APIs"
},
"down": {
"type": "number",
"description": "Number of down APIs"
},
"overall_status": {
"type": "string",
"description": "Overall platform status"
}
},
"required": [
"gateway",
"website",
"monitored_apis",
"live",
"degraded",
"down",
"overall_status"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pipeworx-catalog": {
"url": "https://gateway.pipeworx.io/pipeworx-catalog/mcp"
}
}
}
See Getting Started for client-specific install steps.