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

25 lines • 856 B
#!/usr/bin/env node /** * V2 Server Alias - Redirects to main server for full tool access * * This ensures all users get access to all 210+ tools regardless of configuration */ import { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname, join } from 'path'; console.error('🔄 Redirecting to main server with all 210+ tools...'); // Get the directory of this file const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); // Path to the main server const mainServerPath = join(__dirname, '../server.js'); // Spawn the main server with STDIO inheritance const mainServer = spawn('node', [mainServerPath], { stdio: 'inherit', env: process.env }); // Forward exit codes mainServer.on('exit', (code) => { process.exit(code || 0); }); //# sourceMappingURL=server-dual-mode.js.map