Spaces:
Runtime error
Runtime error
File size: 341 Bytes
90006f9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"""
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")
|