PluginBench
MCP Server

Claude Code Bridge from Essential AI Solutions (essentialai.uk) MCP Server

io.github.eaisdevelopment/cc-bridge-mcp-server

What is the Claude Code Bridge from Essential AI Solutions (essentialai.uk) MCP server?

MCP bridge for inter-session communication between Claude Code instances

How to install Claude Code Bridge from Essential AI Solutions (essentialai.uk)

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • CC_BRIDGE_STATE_PATH

    Directory for state file and logs

  • CC_BRIDGE_TIMEOUT_MS

    CLI subprocess timeout in milliseconds

  • CC_BRIDGE_CHAR_LIMIT

    Max characters in CLI message (0 = unlimited)

  • CC_BRIDGE_LOG_LEVEL

    Log verbosity: debug, info, warn, error

  • CC_BRIDGE_CLAUDE_PATH

    Path to the claude CLI executable

  • CC_BRIDGE_STALE_TIMEOUT_MS

    Time in ms before a peer is flagged as stale (0 = disabled)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "cc-bridge-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@essentialai/cc-bridge-mcp-server"
      ],
      "env": {
        "CC_BRIDGE_STATE_PATH": "<YOUR_CC_BRIDGE_STATE_PATH>",
        "CC_BRIDGE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_TIMEOUT_MS>",
        "CC_BRIDGE_CHAR_LIMIT": "<YOUR_CC_BRIDGE_CHAR_LIMIT>",
        "CC_BRIDGE_LOG_LEVEL": "<YOUR_CC_BRIDGE_LOG_LEVEL>",
        "CC_BRIDGE_CLAUDE_PATH": "<YOUR_CC_BRIDGE_CLAUDE_PATH>",
        "CC_BRIDGE_STALE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_STALE_TIMEOUT_MS>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "cc-bridge-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@essentialai/cc-bridge-mcp-server"
      ],
      "env": {
        "CC_BRIDGE_STATE_PATH": "<YOUR_CC_BRIDGE_STATE_PATH>",
        "CC_BRIDGE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_TIMEOUT_MS>",
        "CC_BRIDGE_CHAR_LIMIT": "<YOUR_CC_BRIDGE_CHAR_LIMIT>",
        "CC_BRIDGE_LOG_LEVEL": "<YOUR_CC_BRIDGE_LOG_LEVEL>",
        "CC_BRIDGE_CLAUDE_PATH": "<YOUR_CC_BRIDGE_CLAUDE_PATH>",
        "CC_BRIDGE_STALE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_STALE_TIMEOUT_MS>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "cc-bridge-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@essentialai/cc-bridge-mcp-server"
      ],
      "env": {
        "CC_BRIDGE_STATE_PATH": "<YOUR_CC_BRIDGE_STATE_PATH>",
        "CC_BRIDGE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_TIMEOUT_MS>",
        "CC_BRIDGE_CHAR_LIMIT": "<YOUR_CC_BRIDGE_CHAR_LIMIT>",
        "CC_BRIDGE_LOG_LEVEL": "<YOUR_CC_BRIDGE_LOG_LEVEL>",
        "CC_BRIDGE_CLAUDE_PATH": "<YOUR_CC_BRIDGE_CLAUDE_PATH>",
        "CC_BRIDGE_STALE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_STALE_TIMEOUT_MS>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "cc-bridge-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@essentialai/cc-bridge-mcp-server"
      ],
      "env": {
        "CC_BRIDGE_STATE_PATH": "<YOUR_CC_BRIDGE_STATE_PATH>",
        "CC_BRIDGE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_TIMEOUT_MS>",
        "CC_BRIDGE_CHAR_LIMIT": "<YOUR_CC_BRIDGE_CHAR_LIMIT>",
        "CC_BRIDGE_LOG_LEVEL": "<YOUR_CC_BRIDGE_LOG_LEVEL>",
        "CC_BRIDGE_CLAUDE_PATH": "<YOUR_CC_BRIDGE_CLAUDE_PATH>",
        "CC_BRIDGE_STALE_TIMEOUT_MS": "<YOUR_CC_BRIDGE_STALE_TIMEOUT_MS>"
      }
    }
  }
}
Claude Code
claude mcp add cc-bridge-mcp-server --env CC_BRIDGE_STATE_PATH=<YOUR_CC_BRIDGE_STATE_PATH> --env CC_BRIDGE_TIMEOUT_MS=<YOUR_CC_BRIDGE_TIMEOUT_MS> --env CC_BRIDGE_CHAR_LIMIT=<YOUR_CC_BRIDGE_CHAR_LIMIT> --env CC_BRIDGE_LOG_LEVEL=<YOUR_CC_BRIDGE_LOG_LEVEL> --env CC_BRIDGE_CLAUDE_PATH=<YOUR_CC_BRIDGE_CLAUDE_PATH> --env CC_BRIDGE_STALE_TIMEOUT_MS=<YOUR_CC_BRIDGE_STALE_TIMEOUT_MS> -- npx -y @essentialai/cc-bridge-mcp-server

Related MCP servers

Atomic multi-file find-and-replace by Essential AI Solutions (essentialai.uk)

0
TypeScript
View repository →