Add it in Codex
Open Settings → MCP servers, choose Add server, select Streamable HTTP, and enter https://verifiedmrr.com/mcp. Save, restart the client when prompted, and choose Authenticate to complete OAuth.
In the Codex terminal UI, /mcp shows the connected server and its tools. The same host configuration is shared by the desktop app, CLI, and IDE extension.
Configure OAuth in config.toml
For a durable configuration, add this table to ~/.codex/config.toml. OAuth is the default authentication mode for remote HTTP servers; run codex mcp login verifiedmrr to authorize.
[mcp_servers.verifiedmrr]
url = "https://verifiedmrr.com/mcp"
auth = "oauth"
enabled = true
required = false
default_tools_approval_mode = "writes"
Use an environment-backed bearer token
For CI or a headless Codex host, create a VerifiedMRR personal MCP token and keep it in an environment secret. bearer_token_env_var names the variable; it does not put the token itself in config.toml.
[mcp_servers.verifiedmrr]
url = "https://verifiedmrr.com/mcp"
bearer_token_env_var = "VERIFIEDMRR_MCP_TOKEN"
enabled = true