MCP MCP Server

Agentic MCP — local coding tools for ChatGPT Developer Mode and other MCP clients. Tested with ChatGPT Plus via HTTPS tunnel; availability varies by

Local serverstdioTypeScript

What is the MCP MCP server?

MCP MCP server exists for a simple reason — assistants are far more useful when they can act on MCP directly instead of describing what you should do. Agentic MCP — local coding tools for ChatGPT Developer Mode and other MCP clients. Tested with ChatGPT Plus via HTTPS tunnel; availability varies by plan and rollout. Independent project, not affiliated with OpenAI.

What you get

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.

Setting it up

Installation goes through your MCP client rather than a global install: point it at mcp-agentic-server on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once MCP is connected, these are the calls the assistant has available:

  • Mode — Tools included
  • 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
  • workspace_summary — Compact architectural summary of the workspace
  • project_bootstrap — Scans package managers, monorepo bounds, and base dependencies
  • read_many — Read multiple files at once
  • tree — Directory tree visualization
  • file_dependencies — Inward and outward dependency map
  • checkpoint_ — Save, restore, list, or delete snapshots

Configuration and credentials

You will need one environment variable: AGENTIC_ALLOWED_ROOTS. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp mcp server does with a few real requests.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP's toolset — Mode, open_workspace, read and 11 more — is a fair guide to whether it matches your workflow. It is maintained by hugolsramos01-bit; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
ModeTools included
open_workspaceOpens a project. Supports mode="checkout" or mode="worktree".
readHardened file reader with startLine, endLine, offset, limit.
writeCreate or overwrite files.
editTargeted string replacements.
bashFallback for shell interactions that have no typed tool; prefer run_package_script for package scripts and the Git tools for Git.
workspace_summaryCompact architectural summary of the workspace.
project_bootstrapScans package managers, monorepo bounds, and base dependencies.
read_manyRead multiple files at once.
treeDirectory tree visualization.
file_dependenciesInward and outward dependency map.
checkpoint_Save, restore, list, or delete snapshots.
edit_dry_runPreview edits without writing.
worktree_Manage isolated git worktrees (create, list, sync, teardown).

How to install the MCP MCP server

{
  "mcpServers": {
    "agentic-mcp": {
      "command": "npx",
      "args": ["-y", "mcp-agentic-server@latest", "stdio"],
      "env": {
        "AGENTIC_ALLOWED_ROOTS": "C:/path/to/projects"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
AGENTIC_ALLOWED_ROOTSConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP to Mode.
  • Use MCP to open workspace.
  • Use MCP to read.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Mode, open_workspace, read, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.