Spaces:
Running
Running
File size: 158 Bytes
0d10048 |
1 2 3 4 5 6 7 8 |
"""Entry point for running the MCP server as a module."""
from .server import main
import asyncio
if __name__ == "__main__":
asyncio.run(main())
|