MCP Web Browser Server

by random-robbie
Verified
  • src
  • mcp_server_diff_python
import asyncio from . import server def main(): """Main entry point for the package.""" asyncio.run(server.main()) # Optionally expose other important items at package level __all__ = ["main", "server"]