check_services_health
Monitor service health status for MCP servers, workers, or infrastructure groups to identify operational issues and ensure system reliability.
Instructions
Check health of one or more services. Safe read-only operation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| service_group | No | Service group: 'all', 'mcp_servers', 'workers', 'infrastructure' | |
| service_names | No | Optional specific service names to check |
Implementation Reference
- src/index.ts:244-262 (handler)Handler for check_services_health tool: destructures arguments, prepares parameters, and calls executeOrchestrator("maintain/health-check", params) to perform the health check.case "check_services_health": { const { service_group, service_names } = args as { service_group?: string; service_names?: string[]; }; const params: Record<string, string> = {}; if (service_group) { params.service_group = service_group; } if (service_names) { params.service_names = service_names.join(","); } result = executeOrchestrator("maintain/health-check", params); break; }
- src/index.ts:113-130 (schema)Input schema definition for the check_services_health tool, specifying service_group and optional service_names.{ name: "check_services_health", description: "Check health of one or more services. Safe read-only operation.", inputSchema: { type: "object", properties: { service_group: { type: "string", description: "Service group: 'all', 'mcp_servers', 'workers', 'infrastructure'" }, service_names: { type: "array", items: { type: "string" }, description: "Optional specific service names to check" } } } },