healthcare-api-mcp / __main__.py
visproj's picture
initial commit
0d10048 verified
raw
history blame
158 Bytes
"""Entry point for running the MCP server as a module."""
from .server import main
import asyncio
if __name__ == "__main__":
asyncio.run(main())