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 • 991 B
TypeScript
/**
* Phoenix Enhanced Handler
*
* Addresses all Phoenix/Elixir specific issues identified in user feedback:
* - Test runner timeouts for large test suites
* - Circuit breaker tuning for BEAM VM
* - Native ExUnit integration
* - Phoenix-specific debugging tools
*/
import { BaseHandler } from './base-handler.js';
import { Tool } from '@modelcontextprotocol/sdk/types.js';
export declare class PhoenixEnhancedHandler extends BaseHandler {
private runningProcesses;
tools: Tool[];
handle(toolName: string, args: any): Promise<any>;
private runExUnitTests;
private parseExUnitOutput;
private parseStackTrace;
private parseCoverageReport;
private formatExUnitResults;
private debugLiveViewState;
private monitorPhoenixPubSub;
private analyzeGenServerState;
private traceEctoQueries;
private phoenixCircuitBreakerStatus;
private handleError;
private getErrorSuggestions;
}
//# sourceMappingURL=phoenix-enhanced-handler.d.ts.map