index-health
Verify system health to ensure optimal performance for indexing, retrieving, and managing notes with full-text search and knowledge graph capabilities.
Instructions
Health check.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/mcp.ts:1266-1268 (handler)Handler for the 'index-health' tool. Executes a simple health check by returning { ok: true } in the standardized MCP tool response format.case 'index-health': { return { content: [{ type: 'text', text: JSON.stringify({ ok: true }) }] }; }
- src/mcp.ts:160-162 (registration)Registration of the 'index-health' tool in the tools array, including name, description, and empty input schema (no parameters required).name: 'index-health', description: 'Health check.', inputSchema: { type: 'object', properties: {} },
- src/mcp.ts:162-162 (schema)Inline input schema for 'index-health' tool: empty object, indicating no input parameters are required.inputSchema: { type: 'object', properties: {} },