We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zazzles2908/EX_AI-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_ws_daemon.py•550 B
#!/usr/bin/env python
import sys
from pathlib import Path
# Ensure repository root is on sys.path
_repo_root = Path(__file__).resolve().parents[1]
if str(_repo_root) not in sys.path:
sys.path.insert(0, str(_repo_root))
# Load .env to ensure EXAI_WS_* are available when run directly
try:
from dotenv import load_dotenv # type: ignore
_env_path = _repo_root / ".env"
if _env_path.exists():
load_dotenv(str(_env_path))
except Exception:
pass
from src.daemon.ws_server import main
if __name__ == "__main__":
main()