"""Entry point for running the Vivado MCP server.""" import asyncio from .server import main if __name__ == "__main__": asyncio.run(main())