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
30 lines • 1.17 kB
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from './base-handler.js';
import { LocalDebugEngine } from '../local-debug-engine.js';
import { NextJSDebugEngineEnhanced } from '../nextjs-debug-engine-enhanced-modular.js';
/**
* Main handler for all Next.js-related debugging tools
* Delegates to specialized sub-handlers for different tool categories
*/
export declare class NextJSHandler extends BaseToolHandler {
private localEngine;
private nextjsEngine;
private coreInfoHandler;
private analysisHandler;
private performanceHandler;
private runtimeHandler;
private monitoringHandler;
private cacheMonitoringHandler;
private securityHandler;
private edgeRuntimeHandler;
private fontHandler;
private pprHMRHandler;
private routeDebugHandler;
private cachePerformanceHandler;
tools: Tool[];
constructor(localEngine: LocalDebugEngine, nextjsEngine: NextJSDebugEngineEnhanced);
private getSubHandlerTools;
handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
private getHandlerForTool;
}
//# sourceMappingURL=nextjs-handler.d.ts.map