Skip to main content
Glama

health_check

Monitor HashPilot MCP server health and status to verify operational functionality and check version, tool availability, and optimization settings.

Instructions

Check HashPilot MCP server health and status. Returns version, tool count, and optimization level.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
verboseNoInclude detailed status

Implementation Reference

  • The handler function that implements the core logic of the 'health_check' tool. It returns a static health status object with server version, tool count, and optimization details.
    async function healthCheck(): Promise<{ success: boolean; data: any }> { return { success: true, data: { status: 'healthy', version: '0.2.0-optimized', toolCount: 31, optimization: 'MCP Best Practices Compliant + M3 Composite Integrations', }, }; }
  • The tool schema definition including name, description, and inputSchema for the 'health_check' tool.
    name: 'health_check', description: 'Check HashPilot MCP server health and status. Returns version, tool count, and optimization level.', inputSchema: { type: 'object' as const, properties: { verbose: { type: 'boolean', description: 'Include detailed status' }, }, }, },
  • src/index.ts:561-563 (registration)
    The switch case registration that maps the 'health_check' tool name to its handler function execution.
    case 'health_check': result = await healthCheck(); break;
  • src/index.ts:541-546 (registration)
    The request handler for listing tools, which includes the 'health_check' tool in the optimizedToolDefinitions array.
    server.setRequestHandler(ListToolsRequestSchema, async () => { // Return all optimized tools including M3 integrations return { tools: optimizedToolDefinitions, }; });

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/justmert/hashpilot'

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