Local coding tools for ChatGPT Developer Mode and MCP clients with safe editing and shell execution.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Connect compatible ChatGPT Web accounts to local coding tools through MCP Developer Mode.
Agentic MCP connects ChatGPT Web Developer Mode to your local repositories through a secure Model Context Protocol (MCP) server. It supports structured file editing, shell execution, Git worktrees, semantic navigation and checkpoints.
[!WARNING] Security Notice: This tool runs on your local machine and can execute shell commands. A managed Git worktree provides an isolated Git checkout to prevent polluting your main repository, but it is not an operating system sandbox. It does not restrict network access or subprocesses. Always review what the LLM intends to run.
[!NOTE] Disclaimer: Agentic MCP is an independent open-source project and is not affiliated with, sponsored by, or endorsed by OpenAI. ChatGPT and OpenAI are trademarks of OpenAI. Tested by the maintainer with ChatGPT Plus using Developer Mode and an HTTPS tunnel. Availability of MCP capabilities depends on the user's ChatGPT plan, workspace configuration and current OpenAI rollout.
Agentic MCP is published in the Official MCP Registry as:
io.github.hugolsramos01-bit/mcp-agentic-server
Install and run locally for Claude Desktop, Cursor, or other local MCP clients:
Turn ChatGPT Web into your primary local coding agent using your existing Web plan:
Initialize and start the server:
Expose the local port (7676) via an HTTPS tunnel:
Enable Developer Mode in ChatGPT Web:
Connect the Custom MCP App:
/mcp:
Complete OAuth Authentication:
Start Coding:
"Open workspace
C:/path/to/projectusing open_workspace and summarize the architecture."
Tested by the maintainer with ChatGPT Plus via Developer Mode and a public HTTPS tunnel (ngrok, Cloudflare Tunnel, etc.). Availability may vary by account, region, plan, and rollout.
When connected directly through ChatGPT Developer Mode, model usage is handled by the user's ChatGPT account rather than by an OpenAI Platform API key. Applicable limits depend on the user's plan and OpenAI policies.
No OpenAI model API key is required. Authentication for the MCP server and tunnel is separate from model API billing.
Yes. It gives ChatGPT Web full local coding capabilities: file inspection, structured line-precise editing, shell execution, Git worktrees, AST navigation, and checkpoints.
Version 1.6.0 focuses on lower-latency coding loops without weakening the security and verification boundaries introduced in 1.5.0:
safe remains the default, trusted
enables practical inline scripting and shell file writes while retaining
destructive-command protections, and full is available for explicitly
unrestricted local execution.read_many defaults to 12k tokens, fast task
context caps large code-region reads at 160-line anchor windows, and file
indexes stay warm across normal model reasoning gaps.AGENTIC_WIDGETS=changes, single-file
edit/write mutations carry their review UI directly and no longer need a
redundant aggregate show_changes round trip.Stop melting your LLM context windows and preserve your ChatGPT Web message limits.
workspace_summary: Instead of a massive unified file dump, returns a compact, high-level map of the workspace (git status, package manager, key scripts, and schemas).read tool forces offset/limit paginations and strict line-range constraints. The model gets exactly what it needs, down to the line, preventing catastrophic token bloat on large files.Running experimental code, tests, or destructive LLM edits in your main directory can break your Hot Module Replacement (HMR), trigger infinite loops in Next.js/Vite, or mess up your node_modules.
open_workspace (mode="worktree"): Automatically spins up an isolated, detached git worktree outside your project's main directory (e.g., ~/.agentic/worktrees/).worktree_install_deps (with allowLifecycleScripts safely controlled), or sync uncommitted changes via worktree_sync_changes, all without touching your live development environment.The server parses TypeScript and JavaScript dynamically (with an in-memory LRU cache to save CPU) to provide the model with semantic maps of your architecture.
next_route_map: Maps out Next.js App Router and Pages Router dynamically, showing roles (api, page, layout) and dynamic segments.payload_schema_map: Analyzes Payload CMS collections to return a clean map of fields, hooks, and relationships.file_dependencies: Maps outward (what a file imports) and inward (who imports the file) dependencies instantly.edit_dry_run: Simulates replacements to validate exact string matching and uniqueness, returning the surrounding context of the would-be edit without saving to disk.changed_files_summary: Fast, accurate summaries of modified and newly staged files using git status --porcelain.For long autonomous sessions, the agent can save point-in-time snapshots of the workspace (checkpoint_save), list them (checkpoint_list), and roll back (checkpoint_restore) if it goes down a bad architectural path.
If you prefer using desktop MCP hosts, configure your client configuration file to use the stdio transport:
The tool surface depends on the AGENTIC_TOOL_MODE setting.
| Mode | Tools included | Use case |
|---|---|---|
assistant (default) | Canonical coding workflow: workspace, context, read/search, Git, checkpoints, edit/dry-run, package scripts, worktrees, diagnostics, and semantic maps. | Full coding-agent workflow with curated model instructions. |
full | Base tools + grep, glob, ls | Manual inspection via shell |
minimal | open_workspace, read, write, edit, bash | Restricted surface |
Note: The
assistantmode is recommended for the full agentic coding experience. SetAGENTIC_TOOL_MODE=assistantin your.envor environment.
Tool mode and command security are separate. AGENTIC_SECURITY_MODE controls what shell commands may pass the policy engine:
| Security mode | Behavior |
|---|---|
safe (default) | Strict command policy. Blocks inline scripting/file-writing shell constructs and destructive commands. |
trusted | Allows python -c, node -e, redirects, heredocs and in-place shell writes, while destructive operations remain protected. |
full | Bypasses command-policy restrictions, including destructive-command rules. |
Persist the setting with agentic config set securityMode safe|trusted|full, then restart the server. OAuth remains required. The shell is not an OS sandbox and may access anything available to the local user account, so trusted and especially full should only be enabled intentionally.
| Tool | Description |
|---|---|
open_workspace | Opens a project. Supports mode="checkout" or mode="worktree". |
read | Hardened file reader with startLine, endLine, offset, limit. |
write | Create or overwrite files. |
edit | Targeted string replacements. |
bash | Fallback for shell interactions that have no typed tool; prefer run_package_script for package scripts and the Git tools for Git. |
visual_review | Capture a local web app at responsive desktop/laptop/tablet/mobile viewports and return PNG screenshots directly to the model. Supports custom viewports; local URLs only. |
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/agentic-mcp)<a href="https://allmcps.com/mcp/agentic-mcp"><img src="https://allmcps.com/api/badge/agentic-mcp?style=directory" alt="Agentic MCP on AllMCPs" /></a>