We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/liquid1982/community-tl-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_http_server.py•278 B
"""Run the HTTP MCP server."""
import uvicorn
from src.config import settings
if __name__ == "__main__":
# Run the HTTP server
uvicorn.run(
"src.http_server:app",
host="0.0.0.0",
port=8000,
log_level="info",
reload=False,
)