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
22 lines • 938 B
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from './base-handler.js';
import { CloudAIService } from '../cloud-ai-service.js';
import { LocalDebugEngine } from '../local-debug-engine.js';
import { APIKeyManager } from '../api-key-manager.js';
import { DebugSession } from '../types.js';
export declare class AnalysisHandler extends BaseToolHandler {
private cloudService;
private localEngine;
private apiKeyManager;
tools: Tool[];
constructor(cloudService: CloudAIService, localEngine: LocalDebugEngine, apiKeyManager: APIKeyManager);
getTools(): Tool[];
handle(toolName: string, args: any, sessions: Map<string, DebugSession>): Promise<any>;
private analyzeWithAI;
private getDebugReport;
private formatAnalysisType;
private formatInsightType;
private getSeverityEmoji;
private formatTimestamp;
}
//# sourceMappingURL=analysis-handler.d.ts.map