We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ChiragPatankar/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
app.py•361 B
"""
Hugging Face Spaces entry point for RAG Backend.
This file is used when deploying to Hugging Face Spaces.
"""
import os
import uvicorn
from app.main import app
if __name__ == "__main__":
# Hugging Face Spaces provides PORT environment variable (defaults to 7860)
port = int(os.getenv("PORT", 7860))
uvicorn.run(app, host="0.0.0.0", port=port)