health-ping
Monitor server liveness by checking if the health-ping tool returns { ok: true }, ensuring the MCP server is operational and ready for prompt sanitization tasks.
Instructions
Liveness probe; returns { ok: true }
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.ts:87-91 (handler)Handler function for the 'health-ping' tool. Returns a JSON content wrapper around { ok: true } and logs the elapsed time.case "health-ping": { const out = { ok: true } as const; logger.info("health.ping", { elapsed_ms: Date.now() - start }); return jsonContent(out); }
- src/tools.ts:76-79 (registration)Tool registration entry in listTools(), defining name, description, and empty input schema for 'health-ping'.name: "health-ping", description: "Liveness probe; returns { ok: true }", inputSchema: { type: "object", properties: {} }, },
- src/tools.ts:78-78 (schema)Input schema definition for 'health-ping' tool: an empty object.inputSchema: { type: "object", properties: {} },