loganalyzer-mcp
Version:
🚀 Debug server logs in under 30 seconds - AI-powered MCP server with rapid debugging, real-time monitoring, and actionable fixes
31 lines (30 loc) • 798 B
TypeScript
export interface RapidDebugResult {
timeToAnalysis: number;
criticalErrors: string[];
quickFixes: QuickFix[];
debugCommands: string[];
rootCause: string;
confidence: number;
nextSteps: string[];
}
export interface QuickFix {
issue: string;
fix: string;
command?: string;
priority: 'high' | 'medium' | 'low';
estimatedTime: string;
}
export declare class RapidDebugger {
private logAnalyzer;
constructor();
debugInUnder30Seconds(logContent: string): Promise<RapidDebugResult>;
private instantPatternAnalysis;
private generateQuickFixes;
private generateDebugCommands;
private generateNextSteps;
quickScan(logContent: string): Promise<{
errors: number;
critical: boolean;
time: number;
}>;
}