vivado_mcp/__main__.py
cah ec1d8942e9 Initial commit: Vivado MCP Server
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 08:41:50 -07:00

7 lines
146 B
Python

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