JC321's picture
Upload 7 files
90006f9 verified
raw
history blame
341 Bytes
"""
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")