We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/abdullah1854/MCPGateway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
codex-config.toml•648 B
# OpenAI Codex MCP Configuration
# Add to ~/.codex/config.toml
# Basic configuration (no auth)
[mcp_servers.mcp_gateway]
type = "http"
url = "https://your-gateway.example.com/mcp"
# With API key authentication
# Note: Codex requires HTTPS for remote servers
[mcp_servers.mcp_gateway_auth]
type = "http"
url = "https://your-gateway.example.com/mcp"
headers = { Authorization = "Bearer your-api-key-here" }
# Example with local development (use ngrok or similar for HTTPS)
# For local testing, you can use:
# ngrok http 3010
# Then use the ngrok HTTPS URL
[mcp_servers.mcp_gateway_dev]
type = "http"
url = "https://your-ngrok-url.ngrok.io/mcp"