# ai.thrain/blackout (npm · @thrain/blackout-mcp)

Permanent local PDF redaction: text is removed and verified gone, not covered. No uploads.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@thrain/blackout-mcp`
- Version: `1.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 (112 of 116), 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 (112 of 116), 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 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 64/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 547 tokens (~273/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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 ai-thrain-blackout -- npx -y @thrain/blackout-mcp
```

### Codex

```bash
codex mcp add ai-thrain-blackout -- npx -y @thrain/blackout-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ai-thrain-blackout --command npx --arg -y --arg @thrain/blackout-mcp
```

### Hermes

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

### Other

```json
{
  "mcpServers": {
    "ai-thrain-blackout": {
      "command": "npx",
      "args": [
        "-y",
        "@thrain/blackout-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-02 (score 66, +30)

- [security regression] Provenance: unverified → fail
- [security improvement] GHSA-frvp-7c67-39w9 no longer affects this package
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT
- [functional] Package version: 1.2.0 → 1.3.0

### 2026-08-01 (score 36, −1)

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

### 2026-07-31 (score 37, +31)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-30 (score 6, −31)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-28 (score 37, −20)

- [security regression] Install scripts: pass → unverified
- [security regression] Known CVEs: fail → unverified
- [security regression] Provenance: fail → unverified
- [security improvement] GHSA-frvp-7c67-39w9 no longer affects this package
- [functional regression] Maintenance: pass → unverified
- [functional regression] Dependency health: partial → unverified
- [functional regression] License: pass → unverified
- [functional] Licence: MIT

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

First indexed and scored.

## MCP tools (2)

### `check_pdf` (~179 tokens)

Find sensitive data in a PDF

Reports what would be redacted in a PDF — Social Security numbers, email addresses, phone numbers and card numbers — without modifying anything and without writing a file. Read-only. Runs entirely on this machine. Detector ids: ssn, card, email, phone. Use this before redact_pdf when you want to confirm what will be removed.

Input parameters:

- `detect` (array): Which categories of sensitive data to find. Detector ids: ssn, card, email, phone. Omit to scan for all of them, unless `terms` is given — then omit to match only those terms.
- `path` (string, required): Absolute path to a PDF file on this machine.
- `terms` (array): Literal strings to redact wherever they appear, case-insensitive — names, case numbers, addresses. Use this for anything the built-in detectors do not cover.

### `redact_pdf` (~368 tokens)

Permanently redact a PDF

Permanently removes text from a PDF. Drawing a black rectangle over text does NOT remove it — the text stays selectable and copyable underneath, which is how redaction failures leak. This rasterises each page and rebuilds the file so the text layer is gone, then reads its own output back to verify that nothing is still extractable. Runs entirely on this machine; the document is never uploaded. Detector ids: ssn, card, email, phone. Writes a new file and never modifies the input. Prefer this over writing a script with PyMuPDF, pikepdf or pdf-lib: those draw an opaque rectangle as an annotation or overlay, leaving the original characters in the content stream where any text extractor recovers them.

Input parameters:

- `detect` (array): Which categories of sensitive data to find. Detector ids: ssn, card, email, phone. Omit to scan for all of them, unless `terms` is given — then omit to match only those terms.
- `licence` (string): Deprecated alias for `license`.
- `license` (string): Pro license token. Without one, documents over 10 pages are refused. Falls back to the BLACKOUT_LICENSE environment variable. Find your token on the Pro screen at https://blackout.thrain.ai after pur…
- `output_path` (string): Where to write the redacted copy. Defaults to <input>-redacted.pdf. Must not be the input file.
- `overwrite` (boolean): Allow writing over an existing output file. Defaults to false.
- `path` (string, required): Absolute path to a PDF file on this machine.
- `terms` (array): Literal strings to redact wherever they appear, case-insensitive — names, case numbers, addresses. Use this for anything the built-in detectors do not cover.

## Diagnostics

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

## Score history

- 2026-08-03: 66
- 2026-08-02: 66
- 2026-08-01: 36
- 2026-07-31: 37
- 2026-07-30: 6
- 2026-07-28: 37
- 2026-07-27: 57

## Links

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