# io.github.briefroom/mcp (npm · @briefroom/mcp)

briefroom stdio MCP server — expose the briefroom CLI to Claude Code, Codex, and other agents.

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

## Components

- npm · `@briefroom/mcp`: 67/100 (this document), [markdown](https://verifymcp.io/servers/briefroom-mcp/briefroom-mcp.md), [page](https://verifymcp.io/servers/briefroom-mcp/briefroom-mcp)

## Channel facts

- Registry: `npm`
- Package: `@briefroom/mcp`
- 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-06.

- **Supply Chain Security**: 79/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known high-severity CVE affects adm-zip 0.5.18, reached via @briefroom/cli > adm-zip. A fixed version is available.
  - No install/post-install scripts declared.
  - Dependency health was assessed across the 142 of 146 dependencies we could resolve, 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 (MIT).
  - Actively maintained (last published 12 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 68/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 579 tokens (~193/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 37/100
  - Stability observed for 11 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 briefroom-mcp -- npx -y @briefroom/mcp
```

### Codex

```bash
codex mcp add briefroom-mcp -- npx -y @briefroom/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add briefroom-mcp --command npx --arg -y --arg @briefroom/mcp
```

### Hermes

```yaml
mcp_servers:
  briefroom-mcp:
    command: "npx"
    args: ["-y", "@briefroom/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "briefroom-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@briefroom/mcp"
      ]
    }
  }
}
```

## 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-06 (score 67, +1)

No change was recorded against any check on this day. Stability & Change Management went from 33 to 37. That category is still filling its 30-day observation window: 10 days of observed history at the previous scan, 11 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-05 (score 66, 0)

- [functional regression] Security disclosure: unverified → fail

### 2026-08-04 (score 66, +1)

- [functional regression] Security disclosure: fail → unverified

### 2026-08-03 (score 65, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 61, +27)

- [security regression] CVE-2026-39244 affects this package: high
- [security regression] Provenance: unverified → fail
- [security regression] Known CVEs: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 34, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-07-31 (score 19, −7)

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

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

First indexed and scored.

## MCP tools (3)

### `deploy_html` (~353 tokens)

Zip a local directory of HTML/CSS/JS and upload it to briefroom, returning a share URL. Supports a share-link expiry (also applied to the existing link on redeploy), a room display `name` (any language, e.g. Japanese; distinct from `room` slug — see below), and password protection (Pro+ plans). Uses BRIEFROOM_TOKEN (or the briefroom CLI login) for authentication. Non-interactive.

Input parameters:

- `expires` (string): Share link expiry. Defaults to 7d on the server. When set on a redeploy, it also updates the existing link.
- `name` (string): Room display name shown on the dashboard and viewer (1-100 chars, any language including Japanese). Distinct from `room` (slug) and from the auto-issued share URL token. Sets the name on first deploy…
- `new` (boolean): Ignore briefroom.json and create a brand new room with a unique slug.
- `password` (string): Protect the share link with a password (Pro+ plans only). Passed to the CLI via an environment variable, never as an argv flag, so it is not exposed in the process list.
- `path` (string, required): Path to the directory containing HTML to deploy (required).
- `room` (string): Room slug — the ascii kebab-case identifier used to redeploy into an existing room (NOT the display name, and NOT part of the share URL). Overrides briefroom.json / directory name.
- `visibility` (string): Share link visibility. 'unlisted' removes an existing password; 'password_protected' requires the password field.

### `get_feedback` (~151 tokens)

Fetch reviewer comments for a briefroom share URL (or raw token) as an AI-agent-optimized Markdown prompt by default, or JSON. Public API — works without auth, but auth returns owner-only fields.

Input parameters:

- `format` (string): prompt = Markdown for AI agents (default). json = machine-readable.
- `locale` (string): Language of the returned Markdown. Defaults to OS locale.
- `share` (string, required): Share URL (https://.../s/<token>) or raw base32 token (17 or 32 chars).
- `since` (string): ISO 8601 timestamp. Return only comments updated after this instant.
- `status` (string): Filter comments by status. Defaults to all.

### `list_deployments` (~75 tokens)

List briefroom rooms owned by the current PAT, with their latest deploy and share URL. Requires BRIEFROOM_TOKEN or a prior `briefroom login`.

Input parameters:

- `archived` (boolean): List archived rooms instead of active ones.
- `limit` (integer): Max rooms to list (1-100). Defaults to 20.

## Diagnostics

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

## Score history

- 2026-08-06: 67
- 2026-08-05: 66
- 2026-08-04: 66
- 2026-08-03: 65
- 2026-08-02: 61
- 2026-08-01: 34
- 2026-07-31: 19
- 2026-07-30: 26
- 2026-07-28: 26
- 2026-07-27: 26

## Links

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