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

24 lines • 795 B
/** * Serena Integration Handler * * Implements AI-Debug ↔ Serena workflow integration * Enables seamless debug → analyze → fix → validate cycles */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { ToolHandler } from './base-handler.js'; export declare class SerenaIntegrationHandler implements ToolHandler { tools: Tool[]; handle(toolName: string, args: any, sessions: Map<string, any>): Promise<{ content: { type: string; text: string; }[]; }>; private exportFindings; private createCrossToolSession; private generateSerenaWorkflow; private gatherSessionFindings; private handleSubAgentHandoff; private generateHandoffPackage; } //# sourceMappingURL=serena-integration-handler.d.ts.map