Coding agents and access
Codex integration
TesterArmy's hosted MCP server lets Codex create, run and read tests from its own session after one OAuth sign-in.
Checkout group run from Codex
A Codex session runs the regression prompt. The agent lists the project's groups, queues Checkout against Staging in TesterArmy cloud, polls each run and reads the failing transcript.
list_groups "test groups in the project"Checkout group found
run_group "every enabled test, staging environment"batch queued in TesterArmy cloud
get_run "status and result of each run"guest checkout failed
get_run_transcript "reasoning, tool calls and outputs"failing assert step read
- Config file
The [mcp_servers.testerarmy] entry in ~/.codex/config.toml registers the same server as codex mcp add.
- Batch of runs
run_group returns a batch id with one run per enabled test, and get_batch reports every run's verdict.
- Environment target
run_group targets a saved project environment, a named environment such as staging, or an override URL.
How it works
Setup is one codex mcp add command or an entry in ~/.codex/config.toml, and every tool answers No authorization provided until codex mcp login completes in the browser.
Add the server to Codex
Run codex mcp add testerarmy --url https://tester.army/mcp, or add a [mcp_servers.testerarmy] entry with that url to ~/.codex/config.toml.
Run codex mcp login
Run codex mcp login testerarmy to complete the TesterArmy sign-in in the browser over OAuth 2.1, with no API key to create, paste or rotate.
Ask Codex in plain language
Once connected, Codex creates saved tests with create_test, queues a group against a saved environment with run_group, polls get_run and reads failures with get_run_transcript.
Works with
Claude Code and Cursor reach the same hosted server, the MCP server page has the VS Code and mcp-remote routes, and CI webhooks queue saved groups after a deploy.
Questions
Connect Codex to TesterArmy
Create a TesterArmy account, run codex mcp add testerarmy --url https://tester.army/mcp, then codex mcp login testerarmy and sign in when the browser opens.
