UNPKG

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

47 lines • 1.25 kB
/** * Claude Code Debugging Handler * Specialized tools for debugging Claude Code itself - sessions, MCP communication, context analysis, tool decisions */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { BaseToolHandler } from './base-handler-migrated'; export declare class ClaudeCodeDebuggingHandler extends BaseToolHandler { get tools(): Tool[]; handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>; /** * Analyze Claude Code session */ private analyzeClaudeSession; /** * Monitor MCP communication */ private monitorMcpCommunication; /** * Inspect context composition */ private inspectContext; /** * Trace tool decision patterns */ private traceToolDecisions; /** * Analyze response patterns */ private analyzeResponses; /** * Validate Claude Code configuration */ private validateConfig; /** * Profile performance */ private profilePerformance; /** * Debug integrations */ private debugIntegrations; /** * Analyze conversation flow */ private analyzeConversationFlow; } //# sourceMappingURL=claude-code-debugging-handler.d.ts.map