""" Gemini MCP Server - Entry point for backward compatibility This file exists to maintain compatibility with existing configurations. The main implementation is now in server.py """ from server import main import asyncio if __name__ == "__main__": asyncio.run(main())