@simonecoelhosfo/optimizely-mcp-server
Version:
Optimizely MCP Server for AI assistants with integrated CLI tools
12 lines (10 loc) • 353 B
JavaScript
// Main MCP server entry point
// This should always start the MCP server when run via NPX
import('../dist/index.js').then(async (module) => {
// Use the exported main function which handles everything
await module.main();
}).catch(err => {
console.error('Error starting MCP server:', err);
process.exit(1);
});