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

24 lines • 776 B
/** * Tool Compatibility Bridge - Connects v2 stateless architecture with original handler system * * This bridge ensures all 388 original tools work in the new v2 architecture * while maintaining the stateless benefits and crash prevention. */ export declare class ToolCompatibilityBridge { private handlerRegistry; private initialized; constructor(); initialize(): Promise<void>; getAllAvailableTools(): Promise<Array<{ name: string; description: string; inputSchema?: any; }>>; executeStatelessTool(request: any): Promise<any>; private performCleanup; getToolCapabilities(): Promise<{ totalTools: number; categories: string[]; }>; } //# sourceMappingURL=tool-compatibility-bridge.d.ts.map