codex-claude-bridge-mcp
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-claude-bridge-mcpCreate a task to review the PR and list all open tasks"
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 ↔ Claude Code Bridge MCP
English · Türkçe
One local MCP server that lets Codex and Claude Code coordinate through a shared task board and message inbox.
It uses the standard MCP stdio transport. No API key, web server, or cloud account is required. Both clients run the same server program and point at the same local data directory.
Scope: version 0.1.0 is for a single machine or a trusted shared filesystem. It is not a secure multi-user or internet-facing collaboration service.
What it provides
Create, list, claim, update, block, and complete shared tasks.
Send general messages or messages attached to a task.
Prevent active tasks from being claimed by both agents.
Atomically write the shared state, with a cross-process lock for concurrent client calls.
Related MCP server: session-coord-mcp
Quick start
Windows (PowerShell)
git clone https://github.com/nevzoom/codex-claude-bridge-mcp.git
cd codex-claude-bridge-mcp
npm install
npm run build
.\scripts\install.ps1This registers the server with both locally installed CLIs and stores shared state in ~/.codex-claude-bridge. Restart Codex and Claude Code afterwards.
To register only one client:
.\scripts\install.ps1 -Codex
.\scripts\install.ps1 -ClaudemacOS / Linux
git clone https://github.com/nevzoom/codex-claude-bridge-mcp.git
cd codex-claude-bridge-mcp
npm install
npm run build
bash scripts/install.shUse bash scripts/install.sh --codex or --claude to register only that client. To use another shared directory, pass --data-dir /path/to/bridge-data (or -DataDirectory in PowerShell).
Manual MCP configuration
The installer runs the official CLIs for you. If you prefer to configure manually, register this stdio command with both clients, using the same data directory:
node /absolute/path/to/codex-claude-bridge-mcp/dist/index.jsSet this environment variable for both registrations:
CODEX_CLAUDE_BRIDGE_DATA_DIR=/absolute/path/to/shared-bridge-dataCodex also supports project/global MCP configuration in config.toml; Claude Code supports project/user MCP registration. The supplied installers use user-level registration so the bridge is available across projects.
When this variable is omitted, the server uses ~/.codex-claude-bridge. This is convenient when both clients run under the same operating-system user. Set it explicitly whenever clients run under different users or machines.
MCP tools
Tool | Purpose |
| Add a shared task. |
| View tasks, optionally by status. |
| Mark a task as owned by Codex, Claude, or a human. |
| Change its status, owner, or result. |
| Send a general or task-linked message. |
| Read messages for an agent or task. |
Suggested agent workflow
Create a discrete task with
create_task.The receiving agent calls
list_tasks, thenclaim_taskbefore working.Share important context with
post_message.Finish with
update_taskusingstatus: "done"and a conciseresult; useblockedif human input is needed.
Development
npm install
npm run check
npm run buildPublish on GitHub and npm
Create an empty GitHub repository named
codex-claude-bridge-mcp, commit this project, and push themainbranch.Create an npm account, then run
npm loginandnpm publish. If the package name is taken, rename thenamefield to an npm scope you own, such as@your-name/codex-claude-bridge-mcp.Create a GitHub release and tag it with the same semantic version as
package.json.
The package only publishes the compiled dist directory plus the README and MIT license. CI type-checks and builds every pull request.
After publishing to npm, users can register the package directly with their MCP clients using an npx -y <package-name> stdio command. The GitHub-clone installer remains the easiest supported setup because it registers both clients and a shared data directory in one step.
Security and privacy
Task text and messages are stored unencrypted in state.json under the chosen data directory. Do not point it to an untrusted network share and do not put secrets into messages. The data directory is intentionally excluded from Git.
License
This server cannot be installed
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
- 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/nevzoom/codex-claude-bridge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server