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
29 lines • 1.11 kB
TypeScript
/**
* Test Debugging Helper Handler
*
* Provides specialized tools for debugging test failures, particularly for:
* - Registration flow redirects
* - LiveView navigation tracking
* - Form submission verification
* - Visual regression timing
*
* Note: These tools require an existing debug session to be created first
* using inject_debugging tool.
*/
import { BaseToolHandler } from './base-handler.js';
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { DebugSession } from '../types.js';
export declare class TestDebuggingHelperHandler extends BaseToolHandler {
tools: Tool[];
handle(toolName: string, args: any, sessions: Map<string, DebugSession>): Promise<any>;
private verifyRegistrationFlow;
private diagnoseLiveViewDeath;
private captureWithVisualStability;
private debugFailedTest;
private waitForCondition;
private generateRegistrationFlowRecommendations;
private analyzeLiveViewIssues;
private generateTestFailureSummary;
private generateTestDebuggingRecommendations;
}
//# sourceMappingURL=test-debugging-helper-handler.d.ts.map