Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.rahuljava2807/claude-bridge-mcp

NPM · @RAHULONRAMP2807/CLAUDE-BRIDGE-MCP · SCANNED AUG 3

Pipes Claude Code session output into Claude Chat — no more copy-paste between tools

−9 this week 67 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security85
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (145 of 163), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (145 of 163), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 772 tokens (~96/item across 8 items; 8 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @rahulonramp2807/claude-bridge-mcp

# add to Claude Code
claude mcp add rahuljava2807-claude-bridge-mcp -- npx -y @rahulonramp2807/claude-bridge-mcp
# add to Codex CLI
codex mcp add rahuljava2807-claude-bridge-mcp -- npx -y @rahulonramp2807/claude-bridge-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rahuljava2807-claude-bridge-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@rahulonramp2807/claude-bridge-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add rahuljava2807-claude-bridge-mcp --command npx --arg -y --arg @rahulonramp2807/claude-bridge-mcp
# ~/.hermes/config.yaml
mcp_servers:
  rahuljava2807-claude-bridge-mcp:
    command: "npx"
    args: ["-y", "@rahulonramp2807/claude-bridge-mcp"]
// mcp.json
{
  "mcpServers": {
    "rahuljava2807-claude-bridge-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@rahulonramp2807/claude-bridge-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +3
    • Stability: unverified → 0.23 functional
  • 2 Aug 26 +59
    • Provenance: unverified → fail security
    • CVE-2026-14257 no longer affects this package security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Security disclosure: fail → unverified functional
    • MCP protocol: unverified → pass functional
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • Licence: MIT functional
  • 31 Jul 26 −34
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −37
    • Install scripts: pass → unverified security
    • Known CVEs: fail → unverified security
    • Malware scan: pass → unverified security
    • Provenance: fail → unverified security
    • CVE-2026-14257 no longer affects this package security
    • Maintenance: pass → unverified functional
    • Dependency health: partial → unverified functional
    • License: pass → unverified functional
    • Licence: MIT functional
  • 27 Jul 26 76

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@rahulonramp2807/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 145 packages

145 packages in the resolved dependency tree · 145 deprecated · 41 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 8 exposed · ~772 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
get_latest_output ~55

Read the most recent assistant message from a Claude Code session log. If session_id is omitted, the most recently updated session is used.

NameTypeReqDescription
session_idstringOptional session id. Defaults to the most recently modified session.

No output schema declared.

No examples provided.

get_session_context ~58

Return the last N messages from a session for full context injection. Defaults to 10.

NameTypeReqDescription
last_nnumberNumber of most recent messages to return (default 10).
session_idstringyesSession id to read.

No output schema declared.

No examples provided.

list_sessions ~23

List all recent Claude Code sessions with metadata, sorted by most recently updated.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

send_to_session ~197

Queue a prompt for a Claude Code session via ~/.claude/bridge-inbox/<session_id>.txt (cooperative dispatch). Overwrites any pending prompt for that session so the inbox always holds only the latest instruction. Also writes a human-readable receipt to ~/.claude/bridge-inbox/latest.md. Returns a setup_instruction string that the user pastes into their Claude Code terminal once per session; after that, Claude Code will check the inbox before each response, act on whatever is there, and delete it. If /remote-control is active on the target session, remote_control_url is included so the user can watch responses live. Use dry_run=true to preview without writing.

NameTypeReqDescription
dry_runbooleanIf true, return what would be written without writing. Default false.
promptstringyesThe user message to inject into the session.
session_idstringyesTarget session UUID. Get from list_sessions.

No output schema declared.

No examples provided.

setup_drive_sync ~134

Authorize Google Drive upload for the bridge context. Opens a browser consent screen using OAuth credentials at ~/.claude/bridge-google-credentials.json, stores the refresh token at ~/.claude/bridge-google-token.json, then performs an initial upload of the current bridge context as a Google Doc named 'claude-bridge-context'. Requires GOOGLE_DRIVE_ENABLED=true in the server environment for auto-sync to actually push.

NameTypeReqDescription
open_browserbooleanAuto-open the consent URL in the default browser (default true).
timeout_secondsnumberHow long to wait for the consent redirect before giving up (default 300).

No output schema declared.

No examples provided.

start_auto_sync ~136

Start a background loop that rewrites ~/.claude/bridge-context.md and ~/Documents/claude-bridge-context.md every N seconds (default 30) with the latest session output. Call again to restart with new options. The loop runs inside this MCP server process and stops when the server exits.

NameTypeReqDescription
interval_secondsnumberPolling interval in seconds (default 30, minimum 5).
last_nnumberNumber of most recent messages to include each tick (default 20).
session_idstringOptional session id to pin. Defaults to whichever session is most recent at each tick.

No output schema declared.

No examples provided.

watch_session ~52

Start watching a session file (polls every 2s). On subsequent calls for the same session, returns any new messages that appeared since the last call.

NameTypeReqDescription
session_idstringyesSession id to watch.

No output schema declared.

No examples provided.

write_context ~117

Write the last N messages of a Claude Code session to ~/.claude/bridge-context.md and ~/Documents/claude-bridge-context.md as formatted markdown. If session_id is omitted, uses the most recently updated session. Designed to pair with a Google Drive-synced ~/Documents so Projects Claude can read live Claude Code output via its Drive connector.

NameTypeReqDescription
last_nnumberNumber of most recent messages to include (default 20).
session_idstringOptional session id. Defaults to the most recently modified session.

No output schema declared.

No examples provided.