UNPKG

ai-debug-local-mcp

Version:

🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh

38 lines • 1.22 kB
#!/usr/bin/env node /** * AI-Debug v2 Server - Architectural Rebuild with Advanced Stability Monitoring * * This is the new server architecture that addresses all the fundamental * reliability issues through: * - Stateless design and connection-agnostic transport * - Advanced stability monitoring and circuit breakers * - HTTP-first architecture with real-time health tracking * - Automatic recovery and performance optimization */ declare class ProcessSupervisor { private httpTransport; private debugService; private sessionRegistry; private stabilityMonitor; private healthCheckInterval; private performanceInterval; private isShuttingDown; private startupAwareMemoryManager; private advancedMemoryManager; private startTime; constructor(); private setupProcessHandlers; private setupStabilityEventHandlers; start(): Promise<void>; private startHealthMonitoring; private startPerformanceMonitoring; private performHealthCheck; private performPerformanceCheck; private gracefulShutdown; /** * Get comprehensive server status */ getStatus(): any; } export { ProcessSupervisor }; //# sourceMappingURL=server-v2.d.ts.map