CodexReviewMCP exposes Codex review over MCP.
-
Launch ReviewMonitor.
-
Register the MCP server in your client:
# Recommended: HTTP/SSE codex mcp add codex_review --url http://localhost:9417/mcp # Alternative: STDIO adapter codex mcp add codex_review -- codex-review-mcp
-
Call one of the exposed tools:
review_startreview_listreview_readreview_cancel
-
If the client or agent is unfamiliar with the server, inspect discovery resources first:
resources/listresources/templates/listresources/readoncodex-review://help/overview
ReviewMCP uses ~/.codex_review as its dedicated Codex home. The shared
codex app-server launched by ReviewMCP also uses this home, so backend
settings and runtime files are isolated from your normal Codex home.
ReviewMCP creates the directory when needed. It stores backend config in
~/.codex_review/config.toml and runtime metadata such as the current MCP
endpoint under the same directory.
codex mcp add does not currently expose MCP timeout flags. If you expect
long-running reviews, add the timeout values manually in your client Codex
config after registration. This client-side MCP entry is separate from the
ReviewMCP backend home described above:
[mcp_servers.codex_review]
url = "http://localhost:9417/mcp"
startup_timeout_sec = 1200.0
tool_timeout_sec = 1200.0Use your normal codex mcp add ... command first, then edit the generated
entry to include the timeout values.
For a concise architecture summary and diagrams, see Docs/architecture.md.
For tool schemas, discovery resources, resource templates, session behavior, and runtime files, see Docs/mcp.md.