Skip to main content
Glama

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
NameRequiredDescriptionDefault
service_groupNoService group: 'all', 'mcp_servers', 'workers', 'infrastructure'
service_namesNoOptional specific service names to check

Implementation Reference

  • 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; }
  • 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" } } } },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/itsablabla/lastrock-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server