We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rahul23aug/codex-mcp-telegram'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server.py•505 B
#!/usr/bin/env python3
"""Entry point for Codex MCP Server."""
import asyncio
import sys
from pathlib import Path
# Add the parent directory to the path
sys.path.insert(0, str(Path(__file__).parent))
from codex_mcp_server.server import main
if __name__ == "__main__":
try:
asyncio.run(main())
except KeyboardInterrupt:
print("\nShutting down...", file=sys.stderr)
sys.exit(0)
except Exception as e:
print(f"Error: {e}", file=sys.stderr)
sys.exit(1)