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 • 873 B
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from './base-handler.js';
import { LocalDebugEngine } from '../local-debug-engine.js';
import { FlutterQuantumDebugger } from '../flutter-quantum-debugger.js';
/**
* Handler for all Flutter-related debugging tools
* Delegates all operations to specialized sub-handlers
*/
export declare class FlutterHandler extends BaseToolHandler {
private localEngine;
private quantumDebugger;
private coreInfoHandler;
private widgetTreeHandler;
private performanceHandler;
private memoryStateHandler;
private quantumHandler;
constructor(localEngine: LocalDebugEngine, quantumDebugger: FlutterQuantumDebugger);
get tools(): Tool[];
handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
}
//# sourceMappingURL=flutter-handler.d.ts.map