UNPKG

@codai/cbd

Version:

Codai Better Database - High-Performance Vector Memory System with HPKV-inspired architecture and MCP server

19 lines 642 B
/*! * CBD MCP Health Check Tool * Provides system health status and dependency checks */ import { CBDMemoryEngine } from '../../../memory/MemoryEngine.js'; import { HealthStatus } from '../../types.js'; import { CBDMCPConfig } from '../../config.js'; /** * Perform comprehensive health check of CBD MCP server */ export declare function healthCheck(engine: CBDMemoryEngine, config: CBDMCPConfig): Promise<HealthStatus>; /** * Get simple health check result for quick status */ export declare function quickHealthCheck(engine: CBDMemoryEngine): Promise<{ status: string; message: string; }>; //# sourceMappingURL=health.d.ts.map