CodexReviewKit is the native macOS companion app for Codex review.
Launch ReviewMonitor.app, register its MCP endpoint with Codex, then run
reviews through the codex_review tools while the app keeps the review state
visible.
-
Launch
ReviewMonitor.app. -
Register the local MCP endpoint in the client you use.
Codex CLI:
codex mcp add codex_review --url http://localhost:9417/mcp
Claude Code:
claude mcp add --transport http codex_review http://localhost:9417/mcp
-
Use the review tools from Codex:
review_startreview_listreview_readreview_cancel
ReviewMonitor.appshows review jobs, output, and findings.http://localhost:9417/mcpis the app-managed MCP endpoint.codex app-serverruns behind ReviewMonitor as the live review backend.~/.codex_reviewis the dedicated Codex home used by ReviewMonitor.
Long reviews can exceed the default MCP client timeout. codex mcp add does
not currently expose timeout flags, so add them manually after registration:
[mcp_servers.codex_review]
url = "http://localhost:9417/mcp"
startup_timeout_sec = 1200.0
tool_timeout_sec = 1200.0This config belongs to the Codex client that calls the MCP server. It is
separate from ReviewMonitor's dedicated runtime home at ~/.codex_review.
- Architecture: package boundaries, runtime flow, and test responsibilities.
- MCP reference: tool schemas, discovery resources, session behavior, and runtime files.