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
14 lines • 551 B
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { LocalDebugEngine } from '../local-debug-engine.js';
/**
* Handler for automatic problem detection
* Identifies common web app issues like hydration errors, large bundles, poor caching, etc.
*/
export declare class ProblemHandler {
private localEngine;
tools: Tool[];
constructor(localEngine: LocalDebugEngine);
handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
private formatProblem;
}
//# sourceMappingURL=problem-handler.d.ts.map