#!/usr/bin/env node/**
* Legacy MCP Server Entry Point
* This file provides backward compatibility for the legacy server
*/import { startServer } from'./server.js';
// Start the legacy serverstartServer().catch((error) => {
console.error('Failed to start legacy server:', error);
process.exit(1);
});