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

14 lines • 458 B
/** * Complete List of All Unique Tools * * This is the definitive list of all tools available in the system. * No duplicates, no placeholders, just real tools with real implementations. */ export interface Tool { name: string; description: string; inputSchema?: any; } export declare const COMPLETE_TOOL_LIST: Tool[]; export declare function getToolCountByCategory(): Record<string, number>; //# sourceMappingURL=complete-tool-list.d.ts.map