claudeers.
// MCP Servers

cli-bridge

MCP server for Claude Desktop and other Model Context Protocol clients — sandboxed filesystem access (read/write/edit/search) plus Dev Mode-gated shell comma…

// MCP Servers[ cli ][ api ][ desktop ][ claude ]#claude#ai-agent#ai-tools#audit-log#claude-desktop#cli#developer-tools#devtools#mcp-serversMIT$open-sourceupdated about 1 month ago
Actively maintained
100/100
last commit about 1 month ago
last release about 1 month ago
releases 1
open issues 1
// star history

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up cli-bridge (git-clone project) into my current project.
Found on https://claudeers.com/cli-bridge
Repo: https://github.com/anshupriyan/cli-bridge
Homepage/docs: —
Detected install method: git-clone → git clone https://github.com/anshupriyan/cli-bridge
Category: mcp-servers. Platforms: cli, api, desktop.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
active; community-verified: false. Confirm the source before running anything.
// or clone
git clone https://github.com/anshupriyan/cli-bridge

// compatibility

Platformscli, api, desktop
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageTypeScript

cli-bridge

A local Model Context Protocol (MCP) server that gives Claude Desktop — or any MCP-compatible client — sandboxed filesystem access and gated shell command execution, scoped entirely to a single workspace root directory.


What is this?

cli-bridge is a lightweight MCP server that plugs into Claude Desktop (or any MCP client) and gives it:

  • 📂 Filesystem tools — read, write, edit, search, and grep files, all confined to one workspace root
  • 💻 Shell execution — run real commands on your machine, gated behind an explicit Dev Mode toggle
  • 📝 Project memory — an append-only journal (PROJECT_LOG.md) so an agent can pick up context across sessions
  • 🔒 Audit logging — every tool call recorded to a local log file, nothing sent anywhere else

Everything runs locally, on your machine — no external API calls, no cloud dependency, no telemetry.


⚠️ Dev Mode — Read Before Enabling Shell Execution

[!CAUTION] execute_command can run any executable available on your system, with the same permissions as the app hosting the MCP client. This is real shell execution, not a sandbox.

Default stateDev Mode is OFF every time the server starts. execute_command is blocked before anything spawns.
Turning it onRequires an explicit toggle_dev_mode({ enable_dev_mode: true }) call — nothing enables it silently.
Your responsibilityOnce enabled, any command run — including destructive ones (deleting files, modifying system state, installing software, network calls) — executes for real. There is no command allowlist, no confirmation beyond your MCP client's own approval settings, and no undo.
LiabilityThis project's author/developer is not responsible for data loss, system damage, security incidents, or any other consequence of enabling Dev Mode or using execute_command. Enabling it is a decision you make, at your own risk.

Everything else — reading, searching, editing files in the workspace — works fully with Dev Mode left off. If you're unsure, leave it off.


Features

🔍 Read-Only Tools (click to expand)
ToolDescription
read_file(path, start_line?, end_line?)Reads UTF-8 file contents, optional line-range support
list_directory(path, recursive?)Lists directory contents (names, sizes, dir flags)
search_files(pattern, path?)Recursive glob search (e.g. *.ts, **/*.js)
grep_content(pattern, path?, case_sensitive?, max_results?)Fast fixed-string search via bundled @vscode/ripgrep, capped at max_results (default 50)
get_dev_mode_status()Reports whether shell execution is ENABLED or BLOCKED
get_recent_journal_entries(count?, project?)Reads the last N entries from PROJECT_LOG.md

All tools are strictly confined to the workspace root directory.

✍️ Write & Execution Tools (click to expand)
ToolDescription
write_file(path, content)Overwrites/creates a file, auto-creates parent directories
edit_file(path, old_str, new_str)Targeted find-and-replace; errors on zero or multiple matches
execute_command(command, args, cwd?, timeout?)Shell execution, gated by Dev Mode — see warning above
toggle_dev_mode(enable_dev_mode)Enables/re-locks shell execution for the current session only
log_journal_entry(summary, files_changed?, commit_hash?, project?)Appends a structured entry to PROJECT_LOG.md

Security Architecture

┌─────────────────────────────────────────────┐
│              MCP Client (Claude)             │
└────────────────────┬──────────────────────────┘
                      │ tool calls
┌────────────────────▼──────────────────────────┐
│                  cli-bridge                    │
│  ┌───────────────────────────────────────────┐ │
│  │ 1. Path Confinement (resolveSafePath)      │ │
│  │ 2. Symlink Resolution (fs.realpathSync)    │ │
│  │ 3. Dev Mode Gate (execute_command only)    │ │
│  │ 4. Shell Metacharacter Scan (Windows only) │ │
│  │ 5. Audit Log Write (.cli-bridge-audit.log) │ │
│  └───────────────────────────────────────────┘ │
└────────────────────┬──────────────────────────┘
                      │ confined to
              <workspaceRoot>/
  • Path Confinement — every path (including command cwd) resolves strictly relative to the workspace root; traversal attempts are rejected.
  • Symlink Protection — symlinks pointing outside the workspace boundary are resolved and blocked.
  • Dev Mode Gatingexecute_command is hard-blocked at the handler entry point until explicitly toggled on.
  • No Command Allowlist — once Dev Mode is on, any executable on the host can run. See the warning above.
  • Shell Metacharacter Scanning — Windows build-tool wrappers (npm, npx, yarn, pnpm, tsc, jest, eslint, prettier) run with shell: true; arguments are scanned for & | ; $ > < ^ and blocked if found. Everything else runs with shell: false.
  • Audit Logging — every tool call is recorded as JSON in <workspaceRoot>/.cli-bridge-audit.log (timestamp, arguments truncated to 200 chars, status: success / error / blocked).

Compatibility

PlatformStatus
🪟 Windows 11 (x64)✅ Tested and verified
🍎 macOS (arm64 / x64)⚠️ Architecturally supported (pure ESM + auto-resolved ripgrep binary), not yet live-tested
🐧 Linux (x64)⚠️ Architecturally supported, not yet live-tested

Windows-specific handling (the .cmd/.bat wrapper allowlist and shell-metacharacter scan) only applies when process.platform === 'win32'. On macOS/Linux, all commands spawn directly with shell: false. If you run this on macOS or Linux, feedback/issues are welcome.


Token-Efficient Workflows

  1. Use grep_content to locate keywords/functions before reading full files.
  2. Use read_file with start_line/end_line once you have coordinates.
  3. Use edit_file for targeted changes instead of rewriting whole files.
  4. Use git diff / git log / git show via execute_command (Dev Mode required) to verify changes on disk.

Project Journal

An append-only development log at <workspaceRoot>/PROJECT_LOG.md, meant to be read by an agent at the start of a new session to recover prior context. Agents call log_journal_entry after completing work, including file lists and commit hashes.


Installation

Prerequisites: Node.js v18.17.0+ (v20 or v24 LTS recommended)

npm install
npm run build

Configuration in Claude Desktop

Finding your config file (Windows)

Depending on how Claude Desktop was installed (standard installer vs. MSIX/Microsoft Store package), its configuration file location differs. You can run this PowerShell command to locate your claude_desktop_config.json automatically:

Get-ChildItem -Path "$env:APPDATA\Claude\claude_desktop_config.json", "$env:LOCALAPPDATA\Packages\Claude_*\LocalCache\Roaming\Claude\claude_desktop_config.json" -ErrorAction SilentlyContinue | Select-Object FullName

[!NOTE] If neither path returns a result, the configuration file has likely not been created yet (which happens after opening Claude Desktop for the first time) or is installed in a non-standard location.

Manual File Paths Reference

  • Windows: %APPDATA%\Claude\claude_desktop_config.json (or %LOCALAPPDATA%\Packages\Claude_...\LocalCache\Roaming\Claude\claude_desktop_config.json for Store/MSIX installs)
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Registering cli-bridge

Add cli-bridge to the mcpServers object inside your claude_desktop_config.json:

{
  "mcpServers": {
    "cli-bridge": {
      "command": "node",
      "args": [
        "<YOUR_DEFAULT_INSTALLATION_PATH>/build/index.js",
        "<YOUR_DEFAULT_WORKSPACE_PATH>"
      ],
      "env": {
        "WORKSPACE_ROOT": "<YOUR_DEFAULT_WORKSPACE_PATH>"
      }
    }
  }
}
  • Replace <YOUR_DEFAULT_INSTALLATION_PATH> with the folder where you cloned cli-bridge (e.g. C:/Projects/cli-bridge on Windows or /Users/username/Projects/cli-bridge on macOS/Linux).
  • Replace <YOUR_DEFAULT_WORKSPACE_PATH> with the target project workspace folder you want cli-bridge to manage.

Testing and Debugging

npx @modelcontextprotocol/inspector node build/index.js <YOUR_DEFAULT_WORKSPACE_PATH>

Built as a local-first MCP tool. No cloud dependency, no telemetry, no data leaves your machine.

// faq

What is cli-bridge?

MCP server for Claude Desktop and other Model Context Protocol clients — sandboxed filesystem access (read/write/edit/search) plus Dev Mode-gated shell command execution, scoped to a single workspace root. Local-first, no cloud dependency, full audit logging. Built in TypeScript.. It is open-source on GitHub.

Is cli-bridge free to use?

cli-bridge is open-source under the MIT license, so it is free to use.

What category does cli-bridge belong to?

cli-bridge is listed under mcp-servers in the Claudeers registry of Claude-compatible tools.

1 views
13 stars
unclaimed
updated about 1 month ago

// embed badge

cli-bridge on Claudeers
[![Claudeers](https://claudeers.com/api/badge/cli-bridge.svg)](https://claudeers.com/cli-bridge)

// retro hit counter

cli-bridge hit counter
[![Hits](https://claudeers.com/api/counter/cli-bridge.svg)](https://claudeers.com/cli-bridge)

// reviews

// guestbook

0/500

// related in MCP Servers

🔓

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete…

// mcp-serversf/HTML167,135NOASSERTION[ claude ]
🔓

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io

// mcp-serversfarion1231/Rust127,274MIT[ claude ]
🔓

An open-source AI agent that brings the power of Gemini directly into your terminal.

// mcp-serversgoogle-gemini/TypeScript106,524Apache-2.0[ claude ]
🔓

🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman

// mcp-serversJuliusBrussee/JavaScript100,343MIT[ claude ]
→ see how cli-bridge connects across the ecosystem