UNPKG

@codai/romai-mcp

Version:

ROMAI Ultimate MCP Server - All-in-One Enterprise Solution with 26+ Integrated Tools

21 lines (16 loc) 628 B
#!/usr/bin/env node // Execute the ultimate server script for full functionality import { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname, join } from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); // Execute the ultimate server script for complete 33-tool experience const serverPath = join(__dirname, '..', 'dist', 'ultimate-main.js'); const child = spawn('node', [serverPath, ...process.argv.slice(2)], { stdio: 'inherit', env: process.env }); child.on('exit', (code) => { process.exit(code || 0); });