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

22 lines • 818 B
/** * Phoenix Debugging Tools Handler * * Provides specialized debugging tools for Phoenix/Elixir applications including: * - LiveView state inspection and debugging * - GenServer state monitoring and message tracing * - PubSub message flow visualization * - Supervisor tree inspection * - Process mailbox monitoring */ import { BaseToolHandler } from './base-handler.js'; import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare class PhoenixDebuggingToolsHandler extends BaseToolHandler { tools: Tool[]; handle(toolName: string, args: any): Promise<any>; private debugLiveViewState; private debugGenServerState; private debugPubSubTopics; private debugSupervisorTree; private monitorProcessMailbox; } //# sourceMappingURL=phoenix-debugging-tools-handler.d.ts.map