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
21 lines • 566 B
TypeScript
/**
* Connection Lock - Prevents multiple simultaneous AI-Debug startups
* Solves the Claude rapid connection crash issue
*/
export declare class ConnectionLock {
private static readonly LOCK_FILE;
private static readonly LOCK_TIMEOUT;
/**
* Acquire connection lock
*/
static acquire(): Promise<boolean>;
/**
* Release connection lock
*/
static release(): Promise<void>;
/**
* Check if another instance is running
*/
static isLocked(): Promise<boolean>;
}
//# sourceMappingURL=connection-lock.d.ts.map