ProBridge
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., "@ProBridgeUse ChatGPT Pro to debug the failing auth tests and propose a patch."
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.
ProBridge

Open-source local MCP bridge for ChatGPT desktop Quick Chat + GPT-5.6 Pro.
Coding agents in Codex, OpenCode, Claude, or similar MCP hosts call ProBridge. ProBridge queues the job, opens a verified ChatGPT Quick Chat, and sends the prompt. Inside that ChatGPT session, LocalAnt / DevSpace is the connector that reaches your local Mac and the active workspace.
ChatGPT Pro quota is used. Codex model quota is not. There is no model API key.
Current target: macOS. Windows and Linux are not supported yet. Contributions that add a real driver for those platforms are welcome.
How it fits together
Codex / OpenCode / Claude
|
| MCP tool call
v
ProBridge
prompt · queue · status · follow-up
|
| drives ChatGPT desktop Quick Chat
v
ChatGPT Quick Chat (GPT-5.6 Pro)
|
| LocalAnt / DevSpace inside ChatGPT
v
authenticated device tunnel
|
v
local Mac / active workspaceThe calling agent only needs three tools:
gpt56_pro_start({ prompt })
gpt56_pro_status({ jobId })
gpt56_pro_followup({ jobId, prompt })start returns immediately with a jobId. Poll status. Use follow-up only after that same Quick Chat round is complete.
Related MCP server: mcacp
What this repository adds
LocalAnt / DevSpace gives ChatGPT access to your Mac. ProBridge does not replace that connector and cannot install it for you.
ProBridge gives your coding agent a bridge into ChatGPT Pro. An MCP host sends ProBridge a prompt; ProBridge queues it, drives Quick Chat, and returns job state through MCP. That is why this repository makes sense when you already want ChatGPT Pro to do local work but want Codex, OpenCode, Claude, or another agent to invoke it as a sub-agent.
Requirements
macOS
Node 20+
Xcode command-line tools (
swiftc)ChatGPT desktop signed in with Pro
Accessibility permission for the compiled
bin/ax-driver
LocalAnt / DevSpace is what gives ChatGPT Pro hands on the machine. ProBridge is what lets other agents send work into that ChatGPT session.
Setup — two required parts
1. Set up ChatGPT’s local connector first
ProBridge needs ChatGPT to already have a connector that can reach your local Mac. Choose one connector and complete its upstream setup before installing ProBridge:
LocalAnt (the tested path): follow LocalAnt’s setup guide. The quick start is:
npx -y localant setup localant tools profile codinglocalant setupprints your authenticated MCP endpoint. In ChatGPT desktop, go to Settings → Apps & Connectors, enable Developer Mode, choose Connectors → Create, paste that MCP endpoint, select Authentication: None, and name the connectorLocalAnt. Keep LocalAnt’s local approval and security settings appropriate for your machine.DevSpace: follow Waishnav/devspace and connect its local environment to ChatGPT according to that project’s instructions.
Open a ChatGPT Quick Chat and verify that the selected connector can read a harmless local project file before continuing. This is a separate ChatGPT-side setup; installing ProBridge alone does not give ChatGPT access to your Mac.
2. Install ProBridge on the Mac
git clone https://github.com/HAMZADEMIR33412005/probridge.git
cd probridge
node scripts/build-ax.mjs
node scripts/install.mjs
node scripts/doctor.mjsinstall.mjs creates ~/.codex/config.toml if needed, writes the ProBridge MCP entry, and makes a timestamped backup when an existing config changes. Then grant Accessibility to bin/ax-driver if macOS asks, keep ChatGPT desktop open, and start a new Codex chat.
It does not set cwd; Codex should launch the server from the project you already have open.
MCP for Codex
Automatic:
node scripts/install.mjsManual: copy examples/codex.config.toml into ~/.codex/config.toml and replace the absolute server path.
The registered server name is probridge. After any update, start a new Codex chat so it reloads the MCP process and daemon protocol.
MCP for Claude Code / OpenCode / other hosts
Point a stdio MCP server at this checkout:
{
"mcpServers": {
"probridge": {
"command": "/Applications/ChatGPT.app/Contents/Resources/cua_node/bin/node",
"args": ["/ABS/PATH/TO/probridge/src/server.mjs"]
}
}
}See examples/claude-code.mcp.json and examples/opencode.json. If ChatGPT’s bundled Node is missing, any Node 20+ binary works.
The MCP host must start the server from the project workspace, or provide exactly one file:// root. ProBridge refuses home, Desktop, Documents, and similar broad folders.
Use it
From an agent in the project workspace:
gpt56_pro_start({
prompt: "Inspect the failing tests, fix the root cause, run focused tests, and report changed files."
})Poll:
gpt56_pro_status({ jobId: "pro_..." })Continue the same Quick Chat after it completes:
gpt56_pro_followup({
jobId: "pro_...",
prompt: "Now implement the review findings."
})Jobs are queued. A second New chat can be sent as soon as the previous prompt is verified as submitted. Follow-ups stay on the same conversation.
Status lives in two places:
~/.chatgpt-pro-subagent/— authoritative daemon state, queue, and lock<workspace>/.chatgpt-pro-jobs/<jobId>.md— cooperative control file ChatGPT writes through LocalAnt / DevSpace
Related projects
LocalAnt — ChatGPT’s local MCP gateway / computer connector
DevSpace — local environment / computer connector used with ChatGPT
Platform support
Platform | Status |
macOS | Supported. Native Accessibility driver. |
Windows | Not supported. Needs a different UI driver. |
Linux | Not supported. Needs a different UI driver. |
The MCP server, queue, and control-file protocol are OS-agnostic. The missing piece elsewhere is a trusted replacement for src/native/ax-driver.swift.
Security
ProBridge drives the ChatGPT app you already signed into, then ChatGPT uses LocalAnt / DevSpace to touch the workspace. Treat that as same-user local execution, not a sandbox.
Runtime files under ~/.chatgpt-pro-subagent are private (0700 / 0600). Workspace job files are excluded from git via .git/info/exclude when possible. Broad personal folders are refused as workspaces.
Development
npm test
npm run build:ax
node scripts/doctor.mjsLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceThe simplest way to bridge and collaborate across AI Agent sessions like Claude Code, Codex, Gemini, or Cursor. It allows your agents to combine their strengths to solve your most difficult tasks without leaving their current context.3163MIT
- AlicenseAqualityDmaintenanceBridges any MCP client (like Claude Code, Zed, VS Code) to any ACP coding agent, enabling multi-agent orchestration from a single chat interface.241309Apache 2.0
- AlicenseAqualityAmaintenanceBridges multiple CLI coding agents (Codex, Cursor, OpenCode, Claude, Antigravity) into any MCP client, enabling delegation of prompts, parallel execution, and code review workflows.6103Mozilla Public 2.0
- AlicenseCqualityBmaintenanceBridges browser-based AI assistants with coding agents like Claude Code and Cursor via MCP, enabling chat relay, browser automation, and skill installation.362MIT
Related MCP Connectors
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
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/hxmzadmr/probridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server