
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@briefroom/mcp
Advanced tools
briefroom stdio MCP server — expose the briefroom CLI to Claude Code, Codex, and other agents.
briefroom stdio MCP server — exposes the briefroom CLI as Model Context Protocol tools so agents like Claude Code, Codex, and Cursor can deploy HTML and pull reviewer comments without spawning shells themselves.
| Tool | What it does |
|---|---|
deploy_html | Zip a local directory and upload it to briefroom. Returns a share URL. |
get_feedback | Fetch reviewer comments for a share URL as AI-agent-ready Markdown (default) or JSON. |
list_deployments | List rooms owned by the current PAT with their latest deploy and share URL. |
Internally each tool runs @briefroom/cli as a child process (process.execPath → node <cli>/dist/index.js), so behavior stays identical to the CLI and both packages evolve together.
npm i -g @briefroom/mcp
# or use it via npx (recommended for .mcp.json)
Config file location and env interpolation semantics differ per client. Pick the block that matches yours.
Put .mcp.json at your project root. Claude Code expands ${VAR} against the launching shell's environment:
{
"mcpServers": {
"briefroom": {
"command": "npx",
"args": ["-y", "@briefroom/mcp"],
"env": {
"BRIEFROOM_TOKEN": "${BRIEFROOM_TOKEN}"
}
}
}
}
Or register it via the Claude Code CLI:
claude mcp add briefroom -- npx -y @briefroom/mcp
Cursor does not expand ${VAR} inside env blocks in its MCP config, so you have to decide up front how to supply the PAT. Options, in preference order:
Option A — user-wide config with a literal PAT (keeps PAT out of any repo):
~/.cursor/mcp.json:
{
"mcpServers": {
"briefroom": {
"command": "npx",
"args": ["-y", "@briefroom/mcp"],
"env": { "BRIEFROOM_TOKEN": "hak_your_pat_here" }
}
}
}
The file lives in your home directory, so there's no path for it to end up in a project's git history.
Option B — inherit from the parent shell (no PAT in any config file):
Either ~/.cursor/mcp.json or the project's .cursor/mcp.json, with no env block:
{
"mcpServers": {
"briefroom": {
"command": "npx",
"args": ["-y", "@briefroom/mcp"]
}
}
}
With env omitted, the MCP process inherits your shell's environment. If you've run npx @briefroom/cli login, the CLI reads the PAT from the OS keychain. Alternatively, launch Cursor from a shell that has BRIEFROOM_TOKEN=hak_... exported.
Not recommended — project .cursor/mcp.json with a literal PAT:
⚠️ If you must put a literal PAT in the project's
.cursor/mcp.json, add that file to.gitignoreand never commit it. Leaked PATs in public repos are a well-known incident class — prefer options A or B above. Rotate the PAT at briefroom.net/dashboard/settings/tokens if you commit one by accident.
The stanza above works verbatim, but consult your client's docs for ${VAR} interpolation semantics and PAT-in-file safety before adopting it — the same "user-wide file or env inheritance" preference order applies.
Two options — pick whichever fits your setup:
BRIEFROOM_TOKEN env var (recommended for .mcp.json): create a PAT at briefroom.net/dashboard/settings/tokens and pass it through the env block above.npx @briefroom/cli login once. The MCP server picks up the same credential automatically.BRIEFROOM_TOKEN takes precedence over the keychain when both are set.
get_feedback also works without any credentials — comments on a share URL are public API. Auth only unlocks owner-only fields.
| Env var | Purpose | Default |
|---|---|---|
BRIEFROOM_TOKEN | Personal Access Token. Skips the keychain lookup. | (unset) |
BRIEFROOM_API_URL | Point the CLI at a different backend (dev / staging). | https://briefroom.net |
deploy_html{
"path": "./mockups", // required — directory to deploy
"room": "demo-a", // optional slug override
"expires": "7d", // optional — "7d" | "30d" | "never" (also updates the existing link on redeploy)
"new": false, // optional — start a brand new room
"password": "s3cret", // optional — password-protect the link (Pro+ plans; passed to the CLI via env, never argv)
"visibility": "unlisted" // optional — "unlisted" | "password_protected"; "unlisted" clears an existing password
}
Returns the raw CLI JSON (share_url, room_id, version_number, visibility, …).
get_feedback{
"share": "https://briefroom.net/s/aB3xQ2mK9pNvR4", // URL or bare token
"status": "all", // optional — "open" | "resolved" | "all"
"since": "2026-07-01T00:00Z",// optional ISO 8601 for delta pulls
"format": "prompt", // optional — "prompt" (Markdown) | "json"
"locale": "ja" // optional — "ja" | "en"
}
Returns Markdown by default, formatted so an agent can paste it straight back into context.
list_deployments{
"limit": 20, // optional — 1-100, default 20
"archived": false
}
Returns the raw /api/v1/rooms JSON.
Log lines are written to stderr only — stdout is reserved for JSON-RPC. To see what the server does:
BRIEFROOM_TOKEN=$YOUR_PAT npx @modelcontextprotocol/inspector \
npx -y @briefroom/mcp
Point the inspector at a running backend with BRIEFROOM_API_URL=http://localhost:3000 when developing against a local dev server.
resolve_comment — pending backend PAT support on the comment PATCH endpoint.MIT © briefroom
FAQs
briefroom stdio MCP server — expose the briefroom CLI to Claude Code, Codex, and other agents.
The npm package @briefroom/mcp receives a total of 18 weekly downloads. As such, @briefroom/mcp popularity was classified as not popular.
We found that @briefroom/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.