MCP Server Fetch Python

by tatn
  • src
  • mcp_server_fetch_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']