Codex Delegate MCP
The server acts as a bridge to delegate coding tasks to the OpenAI Codex CLI from AI assistants. It supports four modes:
Agent mode: multi-file implementation.
Plan mode: structured plan without code changes.
Ask mode: read-only Q&A over the codebase.
Review mode: code review over uncommitted changes, base branch diff, or commit SHA.
You can customize each delegation with model choice, reasoning effort, network access, timeout, and working directory. Resume previous threads with resumeThreadId. Cancel running delegations by delegation ID, thread ID, or all at once. Diagnose setup with the doctor tool (including deep checks). Run multiple tasks in parallel, with warnings if workspaces overlap. Output includes status, result, files edited, token usage, warnings, thread ID, and delegation ID.
Delegates coding tasks to the OpenAI Codex CLI, enabling agents to plan, implement, ask questions, and review code, with structured results, thread management, and cancellation.
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., "@Codex Delegate MCPRefactor auth module to async/await and add unit tests"
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.
Codex Delegate MCP
Keep the brains. Delegate the build.
Use your best coding agent where its judgment matters most: understanding the task, shaping the plan, and reviewing the result.
Codex Delegate is the MCP bridge that lets Claude Code, Cursor, Copilot โ or any MCP client โ hand implementation to the OpenAI Codex CLI, then get a clean, structured result back for review.
๐ง Frontier quality, kept
Your assistant does what frontier models are actually for: understands the task, writes a precise brief, reviews the finished diff. Codex holds its own as the implementer โ guided and checked by a smarter orchestrator. The result reads like frontier work, because a frontier model planned it and signed off on it.
Related MCP server: peer-cli-mcp
โก Done faster
Codex tears through multi-file edits while a frontier chat model would still be streaming the first file. You delegate, keep working with your assistant, and the diff shows up done.
๐ Your limits stop being the bottleneck
Delegated work runs on the OpenAI Codex CLI and its own usage โ separate from your orchestrator's chat quota. Your Claude, Cursor, or Copilot subscription spends tokens on the brief and the review; Codex does the grinding. On API? That's the per-token grind moved off your main bill.
๐ Results you can actually trust
An answer only counts as final if Codex exited cleanly and wrote its own last-message file. Cancel or time out a run and you still get the last thing Codex said โ explicitly flagged as salvage, never passed off as finished work. And when Codex's tool calls fail inside a turn that otherwise looks clean, you get a warning saying so, because a confident summary of work that never happened is the expensive failure.
You โ your agent (plans & reviews)
โ MCP delegate tool
โผ
Codex CLI (implements)
โ edits your workspace
โผ
Clean result: what changed, which files, the thread idFeatures
๐ค Native plugins โ install into Claude Code, Cursor, or GitHub Copilot CLI and just say "delegate this to Codex". The shared skill teaches your agent how to delegate well.
๐ฆ Clean, typed results โ validated structured output: the final answer,
statusplus areasonwhen it isn'tcompleted,threadId, tokenusage, and the files Codex edited. Fields that carry no signal are omitted, so anything present is worth reading. Awarningsentry always means something real; an empty one is not a clean bill of health, because the bridge sees the failures Codex reports as failed tool calls and not the ones it explains in prose.๐ Plan first โ
planmode returns a schema-validated plan. Review it, then resume the same thread to implement it.๐ฌ Ask anything โ
askmode: read-only Q&A over your codebase, zero file changes.๐ต๏ธ Native code review โ
reviewmode runs Codex's own reviewer over uncommitted work, a base branch, or a single commit.๐งต Resume โ continue the same Codex thread with
resumeThreadId, and get told if the context didn't actually carry over.๐ Cancel that means it โ process-tree kill across platforms, and
cancelreturns once the process has ended, not once the kill was requested. Name one run bydelegationId, a whole thread bythreadId, or cancel everything.๐งโ๐คโ๐ง Several at once โ delegations run in parallel: fan a question out across models, or put independent workers on independent directories. Overlapping workspaces warn, because two agents writing one tree overwrite each other.
๐ Token accounting โ per-turn input, cached, output, and reasoning counts, straight from Codex.
๐ฉบ Self-diagnosing โ a
doctortool that tells you exactly what's missing if setup isn't right.๐ Works everywhere MCP does โ VS Code, JetBrains, Windsurf, Visual Studio, and more.
Quick start
You need Node.js 20+ and the OpenAI Codex CLI, already logged in (codex login).
Claude Code
/plugin marketplace add andreilungeanu/codex-delegate-mcp
/plugin install codex-delegate-mcp@codex-delegate-mcpThen just ask:
Delegate to Codex: migrate src/api from callbacks to async/await and update the tests, then walk me through what changed.
That's the whole loop โ Claude writes the brief, Codex grinds through the files, Claude walks you through the diff.
Cursor
Add an MCP server in Cursor Settings โ MCP (or project .cursor/mcp.json):
{
"mcpServers": {
"codex-delegate-mcp": {
"command": "npx",
"args": ["-y", "codex-delegate-mcp"]
}
}
}Then ask Cursor to delegate implementation to Codex the same way.
GitHub Copilot CLI
copilot plugin install andreilungeanu/codex-delegate-mcpMore clients
{
"servers": {
"codex-delegate-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "codex-delegate-mcp"]
}
}
}Or run Chat: Install Plugin From Source with this repository's URL.
Under Settings โ Tools โ AI Assistant โ Model Context Protocol (MCP), add a server with command npx and arguments -y codex-delegate-mcp.
{
"mcpServers": {
"codex-delegate-mcp": {
"command": "npx",
"args": ["-y", "codex-delegate-mcp"]
}
}
}Heads-up: Cascade caps you at 100 tools across all servers.
{
"servers": {
"codex-delegate-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "codex-delegate-mcp"]
}
}
}Requires 17.14+. Note the top-level key is servers, not mcpServers.
Kiro, Kilo Code, and any other MCP client
Add the following server to the client's MCP config:
{
"mcpServers": {
"codex-delegate-mcp": {
"command": "npx",
"args": ["-y", "codex-delegate-mcp"]
}
}
}Good to know
This is a worker for an orchestrator host โ not a replacement for Codex's first-party codex mcp-server. Your host writes the brief and reviews the diff; this bridge runs Codex with hooks disabled and your personal config ignored, then hands back evidence the host can trust. Treat the workspace as trusted: project .codex config still applies under Codex's normal precedence.
It works out of the box. Everything is tunable if you want it โ models, reasoning effort, timeouts, Windows sandbox mode โ in Configuration.
License
MIT ยฉ Andrei Lungeanu
Configuration ยท Security ยท Privacy ยท Terms ยท Changelog
Maintenance
Related MCP Servers
- AlicenseAqualityFmaintenanceProvides unified access to multiple CLI AI agents (Codex, Gemini, Claude, and OpenCode) through a single MCP interface with real-time task monitoring, enabling specialized code analysis, UI design, implementation, and prototyping workflows.1121MIT
- Alicense-qualityCmaintenanceMCP bridge for calling local coding-agent CLIs (Codex, Claude) from another agent, enabling bounded tasks like code review, verification, and bug hunting.MIT
- Alicense-qualityCmaintenanceAn MCP+HTTP control plane for routing work to multiple coding-agent CLIs through a normalized contract, enabling multi-agent coding pipelines with planning, implementation, review, and revision.MIT
- AlicenseAqualityBmaintenanceBridges Claude Code and OpenAI Codex through MCP, allowing cross-harness querying, code review, explanation, and implementation delegation.6MIT
Related MCP Connectors
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
A paid remote MCP for OpenAI Codex memory MCP, built to return verdicts, receipts, usage logs, and a
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/andreilungeanu/codex-delegate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server