coderabbit-cli-mcp
English documentation lives here. A full Japanese version is available in README.ja.md.
run_review is the only MCP tool this server exposes. When the CodeRabbit CLI is missing or unauthenticated, the same tool response explains how to bootstrap it and reminds Codex to report back to the user instead of acting autonomously.
Quickstart (Codex CLI)
Published package (npx)
Development checkout (local tsx)
After registration you can inspect tools with codex mcp call coderabbit-cli-mcp tools/list or trigger run_review via codex mcp call.
Codex config (client-side)
~/.codex/config.toml controls how Codex launches MCP servers. Start with the minimal entry above, then add optional knobs:
Uncomment the optional lines you need. Keep
command/argsas-is for a published install, or swap them for the localtsxcommand from the quickstart section.tool_timeout_secshould be ≥600 whenever reviews may run longer than a minute.CODERRABBIT_MCP_LOCK_MODE/_TYPEtake plain strings.CODERRABBIT_MCP_LOCK_CONFIG_FILESmust be a JSON array (CodeRabbit’s-cflag accepts multiple files, so list all required config paths there).CODERRABBIT_TOOL_TIMEOUT_SECshould match the value you assign totool_timeout_secso this server can confirm the configuration.These environment variables are not accepted via MCP tool arguments; Codex’s environment is the only place to set them.
Because the environment carries these values, no extra server-side config files are required.
Provided Tool
Tool | Role | Key arguments |
| Executes |
|
run_review arguments
Argument | Type | Description | Default |
|
| Mirrors the CodeRabbit CLI output format. |
|
|
| Selects the diff scope passed to CodeRabbit. |
|
|
| Overrides the base branch ( | unset |
|
| Overrides the base commit ( | unset |
|
| Directory from which the CLI runs; must exist. | server |
|
| Pre-configured via | unset |
|
| Appended verbatim to the CLI argv (use sparingly). | unset |
--no-coloris always appended so MCP clients receive plain output.Only
mode/type/configFilescan be pre-configured through Codex; all other arguments must be supplied per-tool invocation.
Security & Operating Notes
The server never attempts to install CodeRabbit or run
coderabbit auth login. Follow the emitted guidance and execute commands manually in your own shell.Codex (or any MCP client) must not run additional commands on its own when an error occurs. Report the guidance back to the user and wait for explicit instructions before retrying.
Windows native is unsupported; WSL2 instructions are provided instead. PATH modifications also remain manual.
The MCP server does not read Codex’s
AGENTS.mddynamically. Keep governance rules inAGENTS.md, and rely on the environment variables above to enforcemode/type.