gpt4free/g4f/mcp/__main__.py
copilot-swe-agent[bot] e1214e4372 Add MCP server implementation with web search, scraping, and image generation tools
Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com>
2025-11-01 05:06:46 +00:00

9 lines
184 B
Python

"""Main entry point for gpt4free MCP server
This module provides the main entry point for running the MCP server.
"""
from .server import main
if __name__ == "__main__":
main()