youtube-transcript-mcp
Allows fetching and saving YouTube video transcripts as Markdown documents, including metadata, chapters, and timestamps, so videos can be read and navigated efficiently.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@youtube-transcript-mcpTranscribe https://www.youtube.com/watch?v=aircAruvnKk"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
youtube-transcript-mcp
Turn any YouTube video into a Markdown transcript your LLM can actually afford to read.
The problem
Ask an assistant about a 40-minute talk and it has to swallow the whole thing: ten thousand words of context, most of which answer nothing. Pay for it again next time you ask.
youtube-transcript-mcp puts the transcript on disk and hands back a receipt.
Transcript saved to: transcripts/But what is a neural network.md
Title: But what is a neural network? | Deep learning chapter 1
Channel: 3Blue1Brown · 18:40 · manual en captions
Words: 3,357 Sections: 12
- 0:00 — Introduction example
- 1:07 — Series preview
- 2:42 — What are neurons?
...That summary is about 50 tokens. The model reads the file when it needs the content — and because the index lists every chapter with its offset, it can read only the chapter that answers the question. A 3,357-word video costs 50 tokens to know about and a few hundred to answer from.
The transcription itself costs nothing: it happens on your machine, not in the model.
Related MCP server: YouTube Transcript MCP Server
What the Markdown looks like
---
title: "But what is a neural network? | Deep learning chapter 1"
channel: "3Blue1Brown"
url: "https://www.youtube.com/watch?v=aircAruvnKk"
video_id: "aircAruvnKk"
duration: "18:40"
published: 2017-10-05
language: "en"
captions: manual
words: 3357
sections: 12
generated: 2026-08-05
---
# But what is a neural network? | Deep learning chapter 1
> **3Blue1Brown** · 18:40 · 2017-10-05 · [Watch on YouTube](...)
>
> Transcribed from manual `en` captions.
## Index
- [0:00](...&t=0) — Introduction example
- [1:07](...&t=67) — Series preview
- [2:42](...&t=162) — What are neurons?
## Transcript
### [0:00](...&t=0) Introduction example
**[0:04]** This is a 3. It's sloppily written and rendered at an extremely low
resolution of 28x28 pixels, but your brain has no trouble recognizing it as a 3...Every design choice in that file exists to make it cheap to navigate:
Choice | Why |
YAML front matter | The model can cite the source without opening anything else. |
Author's chapters as | Real semantic boundaries, written by someone who watched the video. |
No chapters → 5-minute blocks | Still gives the model somewhere to aim. |
| One click opens YouTube at that exact second. |
Timestamps per paragraph | An answer can point at when something was said. |
Paragraphs, not caption lines | Captions break every 3 seconds; prose doesn't. |
Install
Requires Node.js ≥ 18 and yt-dlp.
python -m pip install -U yt-dlpgit clone https://github.com/pobibibi/youtube-transcript-mcp.git
cd youtube-transcript-mcp
npm install
npm run buildIf yt-dlp is not on your PATH, set YTDLP_PATH to the executable. The server also falls back to python -m yt_dlp.
Keep yt-dlp current. It is the only component that talks to YouTube, and the only one that breaks when YouTube changes something.
Connect it
Claude Code
claude mcp add youtube-transcript --scope user -- node /absolute/path/to/youtube-transcript-mcp/dist/index.jsClaude Desktop — in claude_desktop_config.json:
{
"mcpServers": {
"youtube-transcript": {
"command": "node",
"args": ["/absolute/path/to/youtube-transcript-mcp/dist/index.js"],
"env": {
"TRANSCRIPTS_DIR": "/where/you/want/the/markdown"
}
}
}
}Any MCP client with stdio transport works the same way.
Use
Just ask:
Transcribe https://www.youtube.com/watch?v=aircAruvnKk
What does this video say about activation functions? https://youtu.be/aircAruvnKk
In the second case the model transcribes, reads the index, and opens only the section that answers you.
transcribe_video
Parameter | Type | Default | Description |
| string | — | Video URL or bare ID. |
| string | the video's own | Caption language code: |
| string | video title | Output filename, without extension. |
| string |
| Where to write the |
| boolean |
| Prefix each paragraph with |
| boolean |
| Include the author's description. |
| number |
| Block size when the video has no chapters. |
| boolean |
| Also return the full Markdown. Expensive; rarely what you want. |
list_languages
Reports the video's own language, its duration, its chapter count, and every caption track it carries. Useful before transcribing when you are not sure the language you want exists.
How it works
URL
│
├─ yt-dlp --dump-single-json ──────► metadata: title, chapters, caption tracks
│
├─ pickTrack() ───────────────────► which language, manual or automatic
│
├─ yt-dlp --write-subs --sub-format json3
│ └─ parseJson3() ─────────► cues, rollup duplicates removed
│
├─ buildMarkdown()
│ ├─ sections from chapters, or fixed time blocks
│ └─ paragraphs, clipped to section boundaries
│
└─ write .md ─────────────────────► return path + summaryFour modules, each with one job: ytdlp.ts talks to YouTube, subtitles.ts parses caption formats, markdown.ts shapes the document, transcribe.ts orchestrates. index.ts is only the MCP surface.
Three decisions worth explaining
json3 over VTT. YouTube's automatic captions emit every line twice — once as a "rollup" fragment, once complete. In VTT you have to guess which is which; in json3 the duplicate carries an aAppend flag and can be dropped exactly. VTT parsing stays as a fallback for the handful of manual tracks yt-dlp cannot hand over as json3.
No language guessing. YouTube will machine-translate its machine transcription into ~150 languages on request. Stacking those two produces text the speaker never said. Without an explicit language, the server stays on the video's own language and prefers human-written captions when they exist.
Paragraphs never cross a chapter boundary. Paragraphs are built within each section, not sliced afterwards. Cutting the other way around files a chapter's opening sentences under the previous chapter and leaves the chapter itself looking empty — which is exactly wrong for a document meant to be read one section at a time.
Limitations
No captions, no transcript. This reads subtitles; it does not transcribe audio. Videos with automatic captions disabled cannot be processed.
Automatic captions are rough. Unreliable punctuation, mangled proper nouns and technical terms. The generated file says so in its own header.
Live streams must finish first.
HTTP 429. YouTube rate-limits bursts. The server backs off once and then explains what to do; browser cookies via
YTDLP_COOKIES_FROM_BROWSERusually settle it.
Environment variables
Variable | Purpose |
| Default output folder. |
| Path to the yt-dlp executable. |
| Browser to pull cookies from ( |
| Same, from a |
| Proxy for all requests. |
Development
npm test # 21 offline unit tests
npm run dev # hot reload
npm run smoke # end-to-end over stdio, hits the network
node test/smoke.mjs "https://youtu.be/VIDEO_ID"
python assets/make_demo.py # regenerate the demo GIFThe unit tests are deliberately offline — parsing, paragraphing and track selection are pure functions, so CI never depends on YouTube being reachable. npm run smoke starts the compiled server and speaks JSON-RPC to it, exactly as a client does.
Notice
This downloads publicly available subtitles, the same way yt-dlp does. Use it for notes, study and research, respecting YouTube's terms of service and the rights of the video's author. Generating a transcript does not make it yours.
License
MIT © pobibibi
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables interaction with YouTube videos by extracting metadata, captions in multiple languages, and converting content to markdown with various templates.Last updated1185MIT
- FlicenseAqualityDmaintenanceEnables fetching YouTube video transcripts in various formats via the Model Context Protocol, allowing LLMs to access and process YouTube video transcripts securely.Last updated1
- Alicense-qualityDmaintenanceEnables LLMs to extract YouTube video transcripts with timestamps, metadata, and file export.Last updated17MIT
- AlicenseAqualityDmaintenanceEnables fetching, searching, and summarizing YouTube video transcripts with multi-language support.Last updated4MIT
Related MCP Connectors
Provide token-optimized, structured YouTube data to enhance your LLM applications. Access efficien…
YouTube transcripts, subtitles, and video metadata as structured JSON via an Apify Actor.
💯 The fastest YouTube transcript + YouTube search MCP for AI agents. Try for free.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pobibibi/youtube-transcript-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server