# io.github.mrslbt/rippr-mcp (npm · rippr-mcp)

Rip YouTube transcripts to disk for AI agents, RAG pipelines, and LLM workflows.

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

## Components

- npm · `rippr-mcp`: 69/100 (this document), [markdown](https://verifymcp.io/servers/mrslbt-rippr-mcp/rippr-mcp.md), [page](https://verifymcp.io/servers/mrslbt-rippr-mcp/rippr-mcp)

## Channel facts

- Registry: `npm`
- Package: `rippr-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 (95 of 99), 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 (95 of 99), 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 23 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 76/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 658 tokens (~329/item across 2 items; 1 tools + 1 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 mrslbt-rippr-mcp -- npx -y rippr-mcp
```

### Codex

```bash
codex mcp add mrslbt-rippr-mcp -- npx -y rippr-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add mrslbt-rippr-mcp --command npx --arg -y --arg rippr-mcp
```

### Hermes

```yaml
mcp_servers:
  mrslbt-rippr-mcp:
    command: "npx"
    args: ["-y", "rippr-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "mrslbt-rippr-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "rippr-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-03 (score 69, −2)

No change was recorded against any check on this day. Supply Chain Security went from 97 to 87. Other categories moved too: Stability & Change Management rose 3.

### 2026-08-02 (score 71, +34)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [functional regression] Schema quality: pass → fail
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional] Schema quality: good → excellent
- [functional] Licence: MIT
- [functional] Package version: 1.1.0 → 1.3.0

### 2026-07-31 (score 37, −14)

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

### 2026-07-30 (score 51, −30)

- [security regression] Known CVEs: partial → unverified
- [security regression] Malware scan: pass → unverified
- [functional regression] Dependency health: partial → unverified

### 2026-07-29 (score 81, +55)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-07-28 (score 26, −27)

- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified
- [functional improvement] Dependency health: unverified → partial

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

First indexed and scored.

## MCP tools (1)

### `rip_transcript` (~377 tokens)

Rip YouTube Transcript

Extract the full transcript from a YouTube video. By default, saves the transcript as a Markdown file to disk and returns a resource_link + metadata (title, channel, language, duration, word count, saved path, preview). The full transcript text is NOT returned by default — this keeps context lean and gives the user a persistent file they can reuse. After calling, always tell the user where the file was saved. If you need the transcript text later (summarize, search, extract quotes), read the returned resource rather than re-ripping. Pass return_text: true only for short clips or when the user explicitly asks for the transcript inline. Pass format: 'segments' to save timestamped JSON instead of Markdown.

Input parameters:

- `format` (string): Saved file format. 'text' writes a Markdown file with YAML frontmatter and a continuous transcript block (best for RAG/LLM). 'segments' writes a JSON file with timestamped segments (best for chapter…
- `return_text` (boolean): If true, include the full transcript text in the tool response alongside the resource_link. Default: false. Use true only for short clips or when the user explicitly wants the transcript inline.
- `save_path` (string): Optional override for where to save the transcript. Can be an absolute path, a ~/-relative path, a directory (file is named automatically), or a full file path. When you save outside the default dire…
- `url` (string, required): YouTube video URL. Supports any YouTube URL format (watch, youtu.be, embed, shorts, or bare 11-char ID).

## Diagnostics

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

## Score history

- 2026-08-03: 69
- 2026-08-02: 71
- 2026-08-01: 37
- 2026-07-31: 37
- 2026-07-30: 51
- 2026-07-29: 81
- 2026-07-28: 26
- 2026-07-27: 53

## Links

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