""" MCP Server Entry Point for Hugging Face Space This file is required by HF Space as the main application entry point. """ from mcp_server_fastmcp import mcp # Entry point for Hugging Face Space if __name__ == "__main__": # Run with SSE transport # HF Space will expose this at port 7860 mcp.run(transport="sse")