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 • 685 B
TypeScript
/**
* Mode Selector Handler - Allows AI agents to choose their preferred debugging style
*
* Offers both:
* 1. Direct tool access (detailed, hands-on)
* 2. Orchestrator mode (automated, high-level)
*/
import { BaseHandler } from './base-handler.js';
import { Tool } from '@modelcontextprotocol/sdk/types.js';
export declare class ModeSelectorHandler extends BaseHandler {
name: string;
private currentMode;
private modeHistory;
tools: Tool[];
handle(toolName: string, args: any): Promise<any>;
private getCurrentMode;
private switchMode;
private compareModes;
private getModeSwitchSummary;
}
//# sourceMappingURL=mode-selector-handler.d.ts.map