/ Verzeichnis / Playground / mcp-youtube-transcript
● Community jkawamoto ⚡ Sofort

mcp-youtube-transcript

von jkawamoto · jkawamoto/mcp-youtube-transcript

Pull transcripts (with timestamps), metadata, and language lists from any YouTube video — so Claude can summarize, quote, or timestamp an hour of video in seconds.

mcp-youtube-transcript exposes 4 tools to get raw transcripts, timed transcripts, video metadata, and available languages. Long transcripts auto-paginate at 50k chars. Supports Webshare / custom HTTP proxies when YouTube rate-limits or blocks your IP.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

youtube-transcript.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "youtube-transcript": {
      "command": "uvx",
      "args": [
        "mcp-youtube-transcript"
      ],
      "_inferred": true
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "youtube-transcript": {
      "command": "uvx",
      "args": [
        "mcp-youtube-transcript"
      ],
      "_inferred": true
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "youtube-transcript": {
      "command": "uvx",
      "args": [
        "mcp-youtube-transcript"
      ],
      "_inferred": true
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "youtube-transcript": {
      "command": "uvx",
      "args": [
        "mcp-youtube-transcript"
      ],
      "_inferred": true
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "youtube-transcript",
      "command": "uvx",
      "args": [
        "mcp-youtube-transcript"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "youtube-transcript": {
      "command": {
        "path": "uvx",
        "args": [
          "mcp-youtube-transcript"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add youtube-transcript -- uvx mcp-youtube-transcript

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: mcp-youtube-transcript

Turn a 60-minute YouTube talk into a 10-bullet summary with timestamps

👤 Researchers, content marketers, students ⏱ ~10 min beginner

Wann einsetzen: You can't watch the full video but need the key points (and to cite them with timestamps).

Ablauf
  1. Fetch timed transcript
    Get timed transcript for https://www.youtube.com/watch?v=VIDEO_ID.✓ Kopiert
    → Transcript with [MM:SS] markers
  2. Summarize with citations
    Give me 10 bullets summarizing the main argument. Each bullet should end with a [MM:SS] pointer to where it's made in the video.✓ Kopiert
    → Bulleted summary with clickable-style timestamps

Ergebnis: Digestible summary you can share with a team Slack in 2 minutes.

Fallstricke
  • Auto-generated captions have errors on technical terms — For accuracy-critical quotes, verify against the actual video at the timestamp
Kombinieren mit: notion

Index a YouTube podcast's back catalog for semantic search

👤 Podcast fans, researchers following a specific show ⏱ ~45 min intermediate

Wann einsetzen: You want to ask 'which episode did they talk about X?' across 100+ episodes.

Ablauf
  1. List episode URLs
    Here's the playlist URL. Get the 50 most recent video IDs.✓ Kopiert
    → Video ID list
  2. Fetch + index
    For each video, get_transcript and get_video_info (title, date). Ingest into local-rag as one doc per episode.✓ Kopiert
    → Indexed corpus
  3. Query
    In which episodes did the hosts discuss 'ring attention'? Give episode number and timestamp.✓ Kopiert
    → Hits with episode metadata

Ergebnis: A searchable podcast library you own and control.

Fallstricke
  • Some videos have no captions — get_available_languages first; skip if empty
Kombinieren mit: local-rag

Translate a talk from one language to another

👤 Non-English speakers, content localizers ⏱ ~10 min beginner

Wann einsetzen: You want to read a Spanish talk in English without running ML translation yourself.

Ablauf
  1. Grab original language transcript
    get_available_languages for this URL. Use Spanish if available.✓ Kopiert
    → Spanish transcript
  2. Translate
    Translate this transcript to English, preserving paragraph breaks.✓ Kopiert
    → English text

Ergebnis: Read-worthy translated transcript.

Fallstricke
  • Tonal / idiomatic content translates awkwardly — For commercial localization, have a human pass

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

youtube-transcript + local-rag

Ingest a channel's transcripts into a searchable local index

For each video in this playlist, get transcript + metadata, then ingest_data into local-rag with source URL.✓ Kopiert
youtube-transcript + notion

Publish video summaries to a Notion knowledge DB

Summarize this talk and create a Notion page in 'Talks' with title, channel, date, and summary.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
get_transcript url_or_id: str, language?: str You want text only, no timestamps free
get_timed_transcript url_or_id, language? You need timestamps for citations or chapter generation free
get_video_info url_or_id Metadata for context / indexing free
get_available_languages url_or_id Check caption availability before attempting fetch free

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
YouTube doesn't officially expose transcripts — expect IP rate limits
Tokens pro Aufruf
Transcripts 1k-50k tokens depending on length; paginated at 50k by default
Kosten in €
Free; proxies (Webshare) cost a few $/mo if you need them
Tipp
Transcripts are often huge. Truncate via --response-limit or just ask for a specific time range.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Proxy credentials if you use Webshare — env var
Datenabfluss: Outbound to youtube.com (possibly via proxy)

Fehlerbehebung

Häufige Fehler und Lösungen

HTTP 429 Too Many Requests

Your IP is rate-limited by YouTube. Configure Webshare proxy via env vars or wait 30-60 minutes.

Prüfen: Try the same URL from another IP
No transcript available

Video has no captions. Call get_available_languages first; if empty, skip.

Age-restricted / region-locked video

Not supported by this MCP. No workaround — use official YouTube Data API with auth.

Python install issues (uvx)

Install uv first: curl -LsSf https://astral.sh/uv/install.sh | sh. Requires Python 3.10+.

Prüfen: uv --version

Alternativen

mcp-youtube-transcript vs. andere

AlternativeWann stattdessenKompromiss
YouTube Data API + official MCP wrapperYou need official, authenticated accessRequires Google API key; quota limits; doesn't directly give transcript text
yt-dlp MCPYou also want video/audio download, not just transcriptsHeavier; downloads media files

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen