npm rippr-mcpstdioMITupdated 1mo ago
YouTube transcript ripper for humans and AI agents.
Was kannst du mit rippr mcp machen?
Three ways to use rippr
🌐 Website — rippr.me
Paste a YouTube URL, get the transcript. Clean text, no signup.
🧩 Chrome Extension — Chrome Web Store
One-click transcript extraction directly on any YouTube page. Multiple output formats (RAG, JSON, Markdown).
🤖 MCP Server — npm
Connect rippr to Claude, Cursor, or any MCP-compatible client. Saves each transcript to ~/rippr/transcripts/ and returns the file path to the model.
Desktop clients only. rippr runs as a local stdio process, so it works with Claude Desktop, Claude Code CLI, and Cursor. It does not work with cloud-hosted clients (claude.ai on the web, the Claude mobile app, or Claude Code on phone / web), which can't spawn local processes.
npx rippr-mcp
Add to Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"rippr": {
"command": "npx",
"args": ["-y", "rippr-mcp"]
}
}
}
Then ask: "Rip this YouTube video: [url]". See mcp/README.md for the full tool surface.
Output formats
- RAG (.txt) — single continuous text block, optimized for chunking and embedding
- Structured (.json) — timestamped segments with metadata
- Readable (.md) — markdown with headers and formatting
How it works
Multi-strategy extraction for maximum reliability:
- Innertube API — YouTube's internal player API (Android client)
- HTML scraping — parses
ytInitialPlayerResponsefrom page source - Transcript panel — opens YouTube's built-in transcript panel as last resort
Caption XML parsed in multiple formats (srv3, timedtext, JSON3). Retry with exponential backoff on transient failures.
Privacy
Runs entirely on your machine. No data sent to external servers. No accounts, no tracking. Only communicates with YouTube's own APIs.
More MCPs
| MCP | What it does |
|---|---|
| Japan UX | Japanese UX rules for AI: forms, keigo, typography, trust signals |
| Rakuten | Search Rakuten's marketplace, books, and hotels |
| Xendit | Xendit payment APIs: invoices, disbursements, balances |
Disclaimer
Rippr is an unofficial, community-built tool. It is not affiliated with, endorsed by, or sponsored by YouTube or Google LLC. YouTube is a trademark of Google LLC.
Rippr accesses publicly available YouTube transcript data through endpoints that YouTube's own apps use. Use is subject to YouTube's Terms of Service, and use is at your own risk. The author accepts no liability for takedowns, rate limits, account actions, or any other consequences of use.
If YouTube changes their internal APIs in ways that break extraction, the tool may stop working without notice. For long-term production use, consider the official YouTube Data API v3 with an API key (not currently supported by this package).
License
Installation
rippr mcp zu deinem Client hinzufügen. Wähl den, den du nutzt.
claude mcp add rippr-mcp -- npx -y rippr-mcpcodex mcp add rippr-mcp -- npx -y rippr-mcpamp mcp add rippr-mcp -- npx -y rippr-mcp{
"mcpServers": {
"rippr-mcp": {
"command": "npx",
"args": [
"-y",
"rippr-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"rippr-mcp": {
"command": "npx",
"args": [
"-y",
"rippr-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"rippr-mcp","command":"npx","args":["-y","rippr-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"rippr-mcp": {
"command": "npx",
"args": [
"-y",
"rippr-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"rippr-mcp": {
"command": "npx",
"args": [
"-y",
"rippr-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"rippr-mcp": {
"command": "npx",
"args": [
"-y",
"rippr-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"rippr-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"rippr-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"rippr-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"rippr-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y rippr-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Unvollständig
- Dokumentation25/25
- Pflege22/25
- Vertrauen13/20
- Funktionsumfang0/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 32 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 1.3.0Aktuell | 2. Aug. 2026 |
| 1.1.0 | 14. Apr. 2026 |
| 1.0.1 | 7. Apr. 2026 |