# Claude Code Bridge from Essential AI Solutions (essentialai.uk) (npm · @essentialai/cc-bridge-mcp-server)

MCP bridge for inter-session communication between Claude Code instances

- Trust score: 64/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@essentialai/cc-bridge-mcp-server`: 64/100 (this document), [markdown](https://verifymcp.io/servers/eaisdevelopment-cc-bridge-mcp-server/essentialai-cc-bridge-mcp-server.md), [page](https://verifymcp.io/servers/eaisdevelopment-cc-bridge-mcp-server/essentialai-cc-bridge-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@essentialai/cc-bridge-mcp-server`
- Version: `0.3.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (ISC).
  - Actively maintained (last published 170 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 438 tokens (~73/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add eaisdevelopment-cc-bridge-mcp-server -- npx -y @essentialai/cc-bridge-mcp-server
```

### Codex

```bash
codex mcp add eaisdevelopment-cc-bridge-mcp-server -- npx -y @essentialai/cc-bridge-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "eaisdevelopment-cc-bridge-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@essentialai/cc-bridge-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add eaisdevelopment-cc-bridge-mcp-server --command npx --arg -y --arg @essentialai/cc-bridge-mcp-server
```

### Hermes

```yaml
mcp_servers:
  eaisdevelopment-cc-bridge-mcp-server:
    command: "npx"
    args: ["-y", "@essentialai/cc-bridge-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "eaisdevelopment-cc-bridge-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@essentialai/cc-bridge-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 64, +33)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Stability: unverified → 0.27
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: ISC

### 2026-08-02 (score 31, +10)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified

### 2026-08-01 (score 21, +21)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 0, −22)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 22, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 40)

First indexed and scored.

## MCP tools (6)

### `cc_register_peer` (~128 tokens)

Register Peer

Register a Claude Code session as a named peer on the bridge. Each peer needs a unique peerId, the CC sessionId to resume, the working directory (cwd), and a human-readable label.

Input parameters:

- `cwd` (string, required): Absolute path to the project working directory
- `label` (string, required): Human-readable label, e.g. 'CC_Backend' or 'CC_Frontend'
- `peerId` (string, required): Unique identifier for this peer, e.g. 'backend' or 'frontend'
- `sessionId` (string, required): Claude Code session ID (used with --resume)

### `cc_deregister_peer` (~48 tokens)

Deregister Peer

Remove a previously registered peer from the bridge. The peer will no longer be reachable for messaging.

Input parameters:

- `peerId` (string, required): Peer ID to deregister, e.g. 'backend'

### `cc_send_message` (~110 tokens)

Send Message to Peer

Send a message from one registered peer to another. The message is relayed by resuming the target's Claude Code session via CLI subprocess. Returns the target's response. Auto-recovers if the target's session has changed.

Input parameters:

- `fromPeerId` (string, required): Peer ID of the sender, e.g. 'backend'
- `message` (string, required): The message content to send to the target peer
- `toPeerId` (string, required): Peer ID of the recipient, e.g. 'frontend'

### `cc_list_peers` (~46 tokens)

List Peers

List all currently registered Claude Code peers on the bridge. Returns peer IDs, session IDs, working directories, labels, and flags peers as potentially stale if idle beyond the configured timeout.

### `cc_get_history` (~68 tokens)

Get Message History

Retrieve the message history for the bridge. Optionally filter by a specific peer ID. Returns messages in chronological order, most recent last.

Input parameters:

- `limit` (number): Maximum number of messages to return (default 50)
- `peerId` (string): Optional peer ID to filter history for

### `cc_health_check` (~38 tokens)

Health Check

Diagnose the bridge's operational status. Checks state file accessibility, lock mechanism, and Claude CLI availability. Returns per-check pass/fail with details.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/eaisdevelopment-cc-bridge-mcp-server/essentialai-cc-bridge-mcp-server#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 31
- 2026-08-01: 21
- 2026-07-31: 0
- 2026-07-30: 22
- 2026-07-28: 40
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/@essentialai/cc-bridge-mcp-server
- Socket report: https://socket.dev/npm/package/@essentialai/cc-bridge-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/eaisdevelopment-cc-bridge-mcp-server/essentialai-cc-bridge-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/eaisdevelopment-cc-bridge-mcp-server/essentialai-cc-bridge-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/eaisdevelopment-cc-bridge-mcp-server/essentialai-cc-bridge-mcp-server
