This guide configures the Versalist command-line interface (CLI). It also configures the Model Context Protocol (MCP) when Codex supports it.
Start Codex in the project directory.
Review this file before you trust the project.
The agent can start the local Versalist MCP server.
Requirements
- Node.js 18 or later
- npm
- An account or provider credential for Codex
- A Versalist account
- A Versalist application programming interface (API) key with the required scopes
1. Install Codex
curl -fsSL https://chatgpt.com/codex/install.sh | sh- The standalone installer supports macOS and Linux.
- Use the official Codex guide for npm, Homebrew, or Windows installation.
2. Authenticate Codex
Authenticate Codex with its account or model provider. This credential is separate from your Versalist key.
codex login
# Use this command only for OpenAI API key authentication.
printenv OPENAI_API_KEY | codex login --with-api-key- Use codex login for ChatGPT account authentication.
- Load OPENAI_API_KEY from a secret store before you use the API key command.
- Do not put the key on the command line.
3. Create a Versalist key
If you are already signed in, open API key settings. Create one key for this agent.
- Name the key for Codex and its environment.
- Select only the scopes that your workflow requires.
- Copy the key before you close the dialog.
- Store the key in a password manager or secret manager.
- Load the key into the agent process environment.
The agent-aware key page selects all three scopes for the full workflow.
- Use
read:challengesto browse or start challenges. - Use
submit:solutionsto submit a solution. - Use
read:submissionsto read submission history through MCP.
Remove a scope if your workflow does not use it.
export VERSALIST_API_KEY=vk_live_...
test -n "$VERSALIST_API_KEY" && echo "Versalist API key is set"4. Install the Versalist CLI
npm install -g @versalist/cli
versalist --helpUse npx -y @versalist/cli if you do not want a global installation.
5. Connect Versalist
Add the Versalist MCP server to .codex/config.toml. Keep the key out of project files.
codex mcp add versalist -- npx -y @versalist/cli mcp[mcp_servers.versalist]
command = "npx"
args = ["-y", "@versalist/cli", "mcp"]
env_vars = ["VERSALIST_API_KEY"]- The add command writes user configuration.
- Edit .codex/config.toml when you need project configuration.
- Codex loads project configuration only after you trust the project.
6. Launch Codex
Open the project directory in a trusted terminal. Then start the agent.
codex7. Run the Versalist workflow
versalist list --search "agentic code optimization"
versalist start agentic-code-optimization-review
versalist run --command "python agent.py" --label baseline
versalist evaluate --run <baseline-run-id> --command "pytest" --score 70
versalist run --command "python agent.py" --label candidate
versalist evaluate --run <candidate-run-id> --command "pytest" --score 84
versalist compare --baseline <baseline-run-id> --candidate <candidate-run-id>
versalist submit --url https://github.com/you/solution --title "Candidate run"The versalist start command loads challenge files. It does not launch the coding agent.
The example python agent.py command is a placeholder. Replace it with your agent command.
Verify the setup
Use these read-only checks before you start a challenge.
codex login status
codex mcp listConfirm that the host reports the Versalist server or command. Do not run a write tool only to test the connection.
Limitations
- The codex mcp add command does not create project-scoped configuration.
- Codex ignores project configuration until you trust the project.
- Codex authentication does not authenticate the Versalist command-line interface.
- The CLI stores local run evidence under .versalist/.
- The CLI does not upload local evidence automatically.
- The submit command sends metadata and URLs, not .versalist/ contents.
Revoke access
- Open API key settings.
- Find the key by name and last-use time.
- Revoke the Versalist key.
- Delete the mcp_servers.versalist block from .codex/config.toml.
- Use codex mcp remove versalist if you added the user configuration.
- Run codex logout if you must remove the OpenAI session.
- Remove VERSALIST_API_KEY from the process environment.
- Restart the agent process.
codex mcp remove versalist
codex logoutRevoke the provider credential separately if it is exposed. A Versalist key revoke does not revoke the provider credential.
Official documentation
Use these official sources if the vendor changes a command or setting.
Return to the coding agent index, or open the Versalist CLI reference.
Canonical guide: /docs/coding-agents/codex