# brainCloud MCP Helper (npm · @braincloud/mcp-helper)

Helper for brainCloud MCP that gives it local file access, enabling easy git sync of cloud code.

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

## Components

- npm · `@braincloud/mcp-helper`: 66/100 (this document), [markdown](https://verifymcp.io/servers/com-braincloudservers-braincloud-mcp-helper/braincloud-mcp-helper.md), [page](https://verifymcp.io/servers/com-braincloudservers-braincloud-mcp-helper/braincloud-mcp-helper)

## Channel facts

- Registry: `npm`
- Package: `@braincloud/mcp-helper`
- Version: `6.0.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 (98 of 102), 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 (98 of 102), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 23 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 59/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1428 tokens (~357/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params.
  - 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 com-braincloudservers-braincloud-mcp-helper -- npx -y @braincloud/mcp-helper
```

### Codex

```bash
codex mcp add com-braincloudservers-braincloud-mcp-helper -- npx -y @braincloud/mcp-helper
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-braincloudservers-braincloud-mcp-helper": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@braincloud/mcp-helper"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-braincloudservers-braincloud-mcp-helper --command npx --arg -y --arg @braincloud/mcp-helper
```

### Hermes

```yaml
mcp_servers:
  com-braincloudservers-braincloud-mcp-helper:
    command: "npx"
    args: ["-y", "@braincloud/mcp-helper"]
```

### Other

```json
{
  "mcpServers": {
    "com-braincloudservers-braincloud-mcp-helper": {
      "command": "npx",
      "args": [
        "-y",
        "@braincloud/mcp-helper"
      ]
    }
  }
}
```

## 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 66, +46)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional regression] Security disclosure: unverified → fail
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Stability: unverified → 0.27
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional] Licence: Apache-2.0

### 2026-08-02 (score 20, 0)

- [functional regression] Security disclosure: fail → unverified

### 2026-08-01 (score 20, −4)

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

### 2026-07-31 (score 24, −18)

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (4)

### `status` (~324 tokens)

Cloud-code sync status

Dry-run: classify every cloud-code script for the branch (in-sync / pull / push / conflict / pull-new / push-new / delete-local / delete-remote). Always safe — no writes. Use a "read" ticket from getSyncTicket.

Input parameters:

- `adoptNoGitBranch` (boolean): Confirm moving the no-git sync state and app mapping onto the current git branch (dropping the no-branch entry). Needed once, when a folder first synced without git is now on a real branch; the tool…
- `branch` (string): Git branch to sync. Defaults to the current branch from .git/HEAD; if the folder is not a git repo, a reserved no-branch key is used and can later be adopted onto a real branch.
- `confirmAppName` (string): Safety confirmation. Only needed for a previously-synced folder that has no committed .bcsync app mapping (e.g. synced by an older helper): set this to the ticket's appName to confirm you intend to s…
- `rootDir` (string): Absolute path to the local cloud-code sync folder (the .ccjs tree + .bcsync). Optional: if omitted, the helper discovers the nearest .bcsync folder at or above its working directory. Pass it explicit…
- `ticket` (object, required): Short-lived ticket from the hosted MCP getSyncTicket tool.

### `pull` (~345 tokens)

Pull cloud-code to local

Apply brainCloud → local for non-conflicting changes (pull / pull-new). Conflicts and local-only changes are left untouched and reported in "skipped". Local deletes only happen with allowDeletes=true. Use a "read" ticket from getSyncTicket.

Input parameters:

- `adoptNoGitBranch` (boolean): Confirm moving the no-git sync state and app mapping onto the current git branch (dropping the no-branch entry). Needed once, when a folder first synced without git is now on a real branch; the tool…
- `allowDeletes` (boolean): Delete local files for scripts removed on brainCloud (default false).
- `branch` (string): Git branch to sync. Defaults to the current branch from .git/HEAD; if the folder is not a git repo, a reserved no-branch key is used and can later be adopted onto a real branch.
- `confirmAppName` (string): Safety confirmation. Only needed for a previously-synced folder that has no committed .bcsync app mapping (e.g. synced by an older helper): set this to the ticket's appName to confirm you intend to s…
- `rootDir` (string): Absolute path to the local cloud-code sync folder (the .ccjs tree + .bcsync). Optional: if omitted, the helper discovers the nearest .bcsync folder at or above its working directory. Pass it explicit…
- `ticket` (object, required): Short-lived ticket from the hosted MCP getSyncTicket tool.

### `push` (~344 tokens)

Push local cloud-code to brainCloud

Apply local → brainCloud for non-conflicting changes (push / push-new) via one bulk import (mode addAndUpdateOnly — never deletes). Conflicts and remote-only changes are left untouched and reported in "skipped". Requires a "write" ticket from getSyncTicket (the hosted MCP refuses a write ticket for a live-locked app).

Input parameters:

- `adoptNoGitBranch` (boolean): Confirm moving the no-git sync state and app mapping onto the current git branch (dropping the no-branch entry). Needed once, when a folder first synced without git is now on a real branch; the tool…
- `branch` (string): Git branch to sync. Defaults to the current branch from .git/HEAD; if the folder is not a git repo, a reserved no-branch key is used and can later be adopted onto a real branch.
- `confirmAppName` (string): Safety confirmation. Only needed for a previously-synced folder that has no committed .bcsync app mapping (e.g. synced by an older helper): set this to the ticket's appName to confirm you intend to s…
- `rootDir` (string): Absolute path to the local cloud-code sync folder (the .ccjs tree + .bcsync). Optional: if omitted, the helper discovers the nearest .bcsync folder at or above its working directory. Pass it explicit…
- `ticket` (object, required): Short-lived ticket from the hosted MCP getSyncTicket tool.

### `sync` (~415 tokens)

Two-way sync cloud-code with brainCloud

Full bidirectional sync for the branch: pulls non-conflicting remote changes, pushes non-conflicting local changes, and 3-way-merges scripts changed on BOTH sides (using brainCloud version history for the merge base). Cleanly-merged scripts are written locally and pushed; genuine conflicts get git-style <<<<<<< markers written into the file and are reported in "conflicted" for you to resolve, then re-run sync. Deletions (delete-local / delete-remote) are applied only when allowDeletes=true. Requires a "write" ticket from getSyncTicket (refused for a live-locked app).

Input parameters:

- `adoptNoGitBranch` (boolean): Confirm moving the no-git sync state and app mapping onto the current git branch (dropping the no-branch entry). Needed once, when a folder first synced without git is now on a real branch; the tool…
- `allowDeletes` (boolean): Apply deletions in both directions (default false).
- `branch` (string): Git branch to sync. Defaults to the current branch from .git/HEAD; if the folder is not a git repo, a reserved no-branch key is used and can later be adopted onto a real branch.
- `confirmAppName` (string): Safety confirmation. Only needed for a previously-synced folder that has no committed .bcsync app mapping (e.g. synced by an older helper): set this to the ticket's appName to confirm you intend to s…
- `rootDir` (string): Absolute path to the local cloud-code sync folder (the .ccjs tree + .bcsync). Optional: if omitted, the helper discovers the nearest .bcsync folder at or above its working directory. Pass it explicit…
- `ticket` (object, required): Short-lived ticket from the hosted MCP getSyncTicket tool.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/com-braincloudservers-braincloud-mcp-helper/braincloud-mcp-helper#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 20
- 2026-08-01: 20
- 2026-07-31: 24
- 2026-07-30: 42
- 2026-07-28: 42
- 2026-07-27: 42

## Links

- npm package: https://www.npmjs.com/package/@braincloud/mcp-helper
- Socket report: https://socket.dev/npm/package/@braincloud/mcp-helper
- Repository: https://github.com/getbraincloud/braincloud-mcp-helper
- Changelog RSS feed: https://verifymcp.io/servers/com-braincloudservers-braincloud-mcp-helper/braincloud-mcp-helper/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-braincloudservers-braincloud-mcp-helper/braincloud-mcp-helper/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-braincloudservers-braincloud-mcp-helper/braincloud-mcp-helper
