chatgpt-local-mcp-bridge
Provides read-only Git repository inspection, allowing agents to view the current status and diff of the configured workspace.
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., "@chatgpt-local-mcp-bridgeWhat files are in the workspace and what's the current git status?"
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.
ChatGPT Local MCP Bridge
A narrow, read-only MCP server that lets ChatGPT Web inspect one local workspace through the official OpenAI Secure MCP Tunnel.
This repository is deliberately smaller than a general local-agent runtime. It has no Electron app, no shell tool, no file writes, no browser automation, no child MCP bridge, and no public HTTP listener.
What this gives us
ChatGPT Web (Developer mode)
|
| OpenAI Secure MCP Tunnel (outbound HTTPS)
v
Official tunnel-client on the local host
|
| MCP stdio
v
chatgpt-local-mcp-bridge
|
v
One allowlisted workspace (read-only)ChatGPT cannot connect to localhost directly. For a private MCP server on a developer machine, OpenAI documents Secure MCP Tunnel as the supported connection path. The tunnel keeps the MCP process private and forwards MCP requests over an outbound connection.
Related MCP server: Kastor
Current scope: v0.1.0
The bridge exposes exactly six read-only tools:
Tool | Purpose |
| Show the one configured workspace without exposing its full path |
| List bounded files/directories, skipping generated and sensitive paths |
| Read bounded UTF-8 text files under the workspace |
| Recursively search bounded text files while skipping noise |
| Run a fixed, read-only |
| Run a fixed, bounded, read-only |
There is intentionally no shell, write_file, delete, browser,
process_start, mcp_call, or arbitrary URL fetch tool in this version.
Local setup
Requirements:
Python 3.11+
Git for the read-only Git tools
An official
tunnel-clientbinary for the host OS if connecting ChatGPT Web
Create the isolated environment and install the project:
cd /home/mike/projects/chatgpt-local-mcp-bridge
python3 -m venv .venv
.venv/bin/python -m pip install --upgrade pip
.venv/bin/pip install -e '.[dev]'Choose one workspace explicitly:
export CHATGPT_BRIDGE_WORKSPACE="$HOME/projects/chatgpt-local-mcp-bridge"Run the local server directly:
.venv/bin/chatgpt-local-mcp-bridgeThis is an MCP stdio process. Its stdout is reserved for MCP protocol traffic; configuration errors go to stderr. Do not run it by opening it as an interactive CLI.
For this repository, the helper script sets the workspace to the repository root when no override is supplied:
./scripts/run-bridge.shConnect to ChatGPT Web
The concrete command below assumes the official tunnel-client runs in the
same WSL environment as the bridge. Use the official binary and current OpenAI
tunnel-client instructions for your host OS.
Create an OpenAI Platform tunnel and record its
tunnel_id.Create a restricted runtime key with Tunnels Read + Use.
Keep the key in the environment for the current process; do not commit it or put it in a YAML profile.
Initialize a stdio tunnel profile:
export CONTROL_PLANE_API_KEY='replace-for-this-shell-only'
export CHATGPT_BRIDGE_WORKSPACE="$HOME/projects/chatgpt-local-mcp-bridge"
tunnel-client init \
--sample sample_mcp_stdio_local \
--profile chatgpt-local-mcp-bridge \
--tunnel-id 'tunnel_replace_me' \
--mcp-command "$PWD/scripts/run-bridge.sh"Validate and run the tunnel:
tunnel-client doctor \
--profile chatgpt-local-mcp-bridge \
--explain
tunnel-client run --profile chatgpt-local-mcp-bridgeIn ChatGPT Web, enable Developer mode, create an app from the plus button, choose Tunnel under Connection, select the associated tunnel, and review the discovered tool list.
Start with a read-only smoke prompt:
Use the local MCP bridge to list the configured workspace, show its top-level
files, report Git status, and summarize the current diff. Do not modify anything.The ChatGPT workspace must be associated with the OpenAI Platform tunnel, and the account/workspace must have Developer mode enabled. Tunnel access and ChatGPT Developer mode are separate permissions.
Security model
This bridge uses a single canonical workspace root. Requested paths are resolved, checked for traversal and symlink escapes, and then filtered for common sensitive names. File and search results are bounded.
The bridge is not an OS sandbox. It is a narrow capability boundary for the first experiment. Any file content returned to ChatGPT can leave the local machine through the OpenAI tunnel. Use a disposable or non-sensitive workspace first.
Do not add shell or write tools until a separate approval design exists. A ChatGPT UI confirmation is not a substitute for server-side authorization or an OS/container boundary.
Tests and verification
Run the full local suite:
.venv/bin/pytestThe suite covers:
workspace containment and traversal rejection;
symlink escape rejection;
sensitive-path blocking;
bounded UTF-8 reads;
generated/sensitive directory filtering;
recursive text search;
fixed Git status/diff behavior;
real MCP stdio handshake, tool discovery, and tool invocation through the official Python MCP client.
Project status
This is a working local slice, not a claim that the ChatGPT account/tunnel has been connected end to end. The local MCP protocol is testable without credentials; ChatGPT Web connection still requires the user's OpenAI Platform permissions and tunnel setup.
See ROADMAP.md for the deliberate next steps and stop line.
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 gradedqualityAmaintenanceEnables ChatGPT to inspect and edit local projects through a secure MCP interface, offering workspace management, file operations, git integration, and safe command execution.4MIT
- AlicenseNot gradedqualityAmaintenanceLets ChatGPT or MCP clients work with files on your machine, with tools for reading, editing, searching, git operations, and safety checks.MIT
- AlicenseAqualityBmaintenanceEnables ChatGPT web to use local tools like file reading, command execution, and patch application through an MCP server over OpenAI Secure MCP Tunnel.6MIT
- AlicenseNot gradedqualityCmaintenanceEnables ChatGPT web to safely read and modify only explicitly allowed local project files through OpenAI Secure MCP Tunnel, including git operations, file edits, and running project scripts, while enforcing strict security boundaries.2MIT
Related MCP Connectors
Securely search and manage workspace context files for AI agents and teams.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Search and reason over your Obsidian-style Markdown vault, right from ChatGPT.
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/chatre7yos/chatgpt-local-mcp-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server