Grok Plugin Codex
This server exposes the local Grok CLI as MCP tools, allowing Codex to delegate code analysis, reviews, diagnostics, and background job management to Grok as a second-agent surface.
Check & Models —
grok_checkverifies CLI installation, version, and login/model availability;grok_modelslists available models.Run & Continue —
grok_runexecutes any prompt in foreground (JSON) or background (streaming-JSON) mode;grok_continueresumes an existing session by ID or the latest one.Review Tools —
grok_reviewperforms bounded, findings-first code reviews;grok_adversarial_reviewfocuses on failure modes (max 5 findings);grok_rescueprovides an independent, read-only diagnosis and minimal path forward.Session & Export —
grok_sessionslists/searches past sessions;grok_exportreturns a session as Markdown or saves it to a file.Background Job Management —
grok_statuschecks job status;grok_resultretrieves stdout/stderr tails and parsed output;grok_cancelterminates a running job.Shared Configuration — All tools accept parameters for working directory, Grok binary, model, timeout, background execution, web search toggle, subagents, max turns, reasoning effort, and privacy controls (e.g.,
allowCodexPrivatePaths).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Grok Plugin CodexReview the latest commit for potential issues."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Grok Plugin Codex
grok-plugin-codex exposes a locally installed Grok CLI to Codex through a bundled Node/TypeScript MCP server. Codex remains responsible for scope, workspace state, verification, git, and final judgment; Grok is a bounded second surface.
Version 0.2.0 is a breaking contract release. It replaces workspace-local background state with a private central worker architecture, removes caller-selected executable and export paths, requires explicit review targets, and returns typed MCP envelopes.
Repository: https://github.com/handong66/grok-plugin-codex Write-up: https://han-dong.link/en/work/grok-plugin-codex
Requirements
Node.js
>=22npm
macOS or Linux
Codex local plugin marketplace support
Grok CLI installed and authenticated
Check the three runtime layers separately:
grok --version # CLI can be discovered
grok --help # installed flags/capabilities
grok models # authentication and model listingA listed model has not necessarily completed a real invocation. grok_check preserves that distinction.
Related MCP server: codex-web-bridge
Install
npm install
npm run check
codex plugin marketplace add .
codex plugin add grok-plugin-codex --marketplace grok-plugin-codexStart a new Codex task after installation or upgrade. Existing tasks retain the MCP server and skill snapshot with which they started. If a new Codex Desktop task sees the updated skill but not the updated MCP tools, restart Codex Desktop and create another task; the Desktop process can retain its MCP registry across reinstall.
The installed bundle contains both:
plugins/grok-plugin-codex/dist/server.js
plugins/grok-plugin-codex/dist/job-worker.jsCapability surface
grok_check,grok_models: CLI/capability and model diagnostics.grok_run,grok_continue: explicit prompt execution and known-session continuation.grok_rescue,grok_review,grok_adversarial_review: enforced read-only, no-subagent second passes. Review tools require an explicittarget.grok_sessions,grok_export: explicit-workspace session inspection and Markdown export.grok_status,grok_result,grok_cancel: private central background-job lifecycle byjobIdonly.
The current MCP listTools schema is authoritative for exact arguments. The repository smoke test locks the published surface and rejects drift.
Result contract
Successful operations return:
{ "ok": true, "data": {}, "error": null, "warnings": [] }Business failures set MCP isError: true and return:
{
"ok": false,
"data": null,
"error": { "code": "typed_code", "message": "actionable message", "retryable": false },
"warnings": []
}Input schema violations are SDK-generated tool errors (isError: true) without the plugin business envelope; clients must inspect the resolved tool result rather than relying only on promise rejection. Every tool publishes an output schema, and plugin-handled JSON text mirrors structuredContent.
Workspace and prompt boundaries
Workspace operations require cwd. The server canonicalizes symlinks and requires the resolved directory to remain inside an active MCP workspace root. Private Codex paths such as ~/.codex are blocked unless the user explicitly authorizes that risk.
Prompts are staged briefly in private 0600 files so a detached worker can survive MCP-server exit. The worker reads and deletes the staging file before Grok runs, then supplies the prompt through file descriptor 3 with Grok's native --prompt-file /dev/fd/3. Prompt text is not placed in the child-process argument list or job record. GROK_BIN is the only supported custom executable configuration and must come from the trusted MCP environment.
Background jobs
Background jobs run in a detached worker and survive MCP-server restarts. State lives under:
$GROK_PLUGIN_STATE_DIR, when explicitly configured;$XDG_STATE_HOME/grok-plugin-codex;~/.local/state/grok-plugin-codex.
An explicit state directory must be disjoint from every active workspace root: neither inside a root nor an ancestor of one. It must be empty, carry the plugin's ownership marker, or match the strict private pre-marker job layout; the plugin will not claim or chmod an existing shared directory. These checks fail closed before creating or changing repository-local state.
Directories use 0700; records, logs, prompt staging files, cancel markers, heartbeats, and owner-token cross-process locks use 0600. Record writes are atomic and terminal status is monotonic. Cancellation is linearized by a marker consumed by the owning worker. Each process group is led by a private launcher whose command identity includes the job ID and random job token; stale-worker reconciliation terminates a persisted group only when all three match, and the launcher removes residual descendants before exiting.
Start with background: true, save data.job.id, then call job tools with jobId. Only this combination is final:
data.resultComplete === true
data.outputTruncated === falseUse data.finalText. Raw tails and partial states are diagnostics only. Terminal job artifacts are retained for seven days and cleaned opportunistically.
Upgrading from 0.1
Finish or cancel 0.1 background jobs before upgrading.
0.2 does not scan or trust old
<workspace>/.grok-plugin-codex/jobsrecords.Old workspace directories are not automatically removed because they belong to the user's workspace.
Per-call executable selection, caller-selected export files, implicit review targets, and job-control
cwdare removed.
Privacy boundary
The plugin does not copy hidden Codex context, system/developer messages, reasoning, arbitrary tool output, secrets, or credentials into prompts. It cannot redact sensitive text that a caller explicitly supplies. See docs/privacy.md.
Development
npm install
npm run check
git diff --checkOptional authenticated invocation:
npm run smoke:live-grokRuntime schemas and tests are authoritative. Bundled README/skill files are the installed user contract; test/contract-drift.test.ts and the MCP smoke prevent removed arguments or mismatched versions from reappearing.
See docs/development.md and docs/verification.md.
Project policies
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/handong66/grok-plugin-codex'
If you have feedback or need assistance with the MCP directory API, please join our Discord server