YouTube Transcript Downloader
Server Details
An MCP server that gives any LLM or agent clean YouTube transcripts on demand: a single video, a whole channel, or a playlist, plus AI cleanup of auto-generated captions. API-key auth, credit-based, same backend as the public v1 API. Get a free API key with 25 free credits at youtubetranscriptdownload.com/account.
- Status
- Healthy
- Uptime
- 100.0% over 39 days
- Last Tested
- Transport
- Streamable HTTP ยท MCP 2025-11-25
- URL
TDQS
Scored across 4 tools
Each tool targets a distinct resource/action: a single video, a channel's recent videos, a playlist's videos, and cleaning a transcript. The descriptions explicitly cross-reference when to use which, eliminating ambiguity.
All tools follow a consistent snake_case verb_noun pattern: get_transcript, get_channel_transcripts, get_playlist_transcripts, polish_transcript. Singular/plural use logically matches the number of videos handled.
Four tools is an appropriate, focused size for a transcript downloader. Each tool serves a clear purpose without redundancy or bloat.
The tool set covers the primary workflows: fetching a single transcript, fetching multiple transcripts from a channel or playlist, and polishing auto-generated captions. The read-only nature makes this surface complete for its stated domain.
Available Tools
4 toolsget_channel_transcriptsGet Channel TranscriptsARead-onlyInspect
Get transcripts for a YouTube channel's most recent videos (newest first) as timestamped markdown, one section per video. Use for research across a creator's recent output; for one known video use get_transcript. Read-only; requires an API key. Charges 1 credit per video that returns a transcript, including repeat calls; videos without captions are skipped free. A 10-video call typically costs up to 10 credits, so start with a small limit. Rate limit: 5 requests per 10 seconds.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | YouTube channel URL or handle (e.g. https://www.youtube.com/@lexfridman or @lexfridman) | |
| limit | No | Number of most-recent videos to fetch, 1-50 (default 10). Upper bound on the credit charge for this call. |
Output Schema
| Name | Required | Description |
|---|---|---|
| failed | Yes | Videos skipped without charge (no captions) |
| channel | Yes | Channel name |
| succeeded | Yes | Videos that returned a transcript (each charged 1 credit) |
| creditsUsed | Yes | Credits charged for this call |
| totalVideos | Yes | Videos attempted in this call |
| transcripts | Yes | All transcripts as timestamped markdown, one section per video, divider-separated |
| creditsRemaining | Yes | Account balance after this call |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only and non-destructive, but the description adds meaningful behavioral context: requires an API key, credit charge per video including repeat calls, free skipping for videos without captions, typical cost for 10 videos, and a rate limit of 5 requests per 10 seconds. This goes beyond annotation defaults and enriches the agent's understanding of side effects and constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence earns its place: purpose, usage guidance, cost model, and rate limit are all packed into a few clear sentences. Information is front-loaded with the core function before operational details, with no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is fully self-contained for selecting and invoking the tool: it specifies output format, input scope, cost behavior, exclusions (videos without captions), rate limiting, and sibling alternatives. Output schema exists, so return-value detail is not required. It covers all essential operational and selection dimensions for a non-trivial tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema already documents both parameters well (100% coverage), so baseline is 3. The description adds value by tying 'limit' to credit costs ('A 10-video call typically costs up to 10 credits, so start with a small limit') and providing example URL formats, giving practical semantics beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a precise verb and object: 'Get transcripts for a YouTube channel's most recent videos (newest first) as timestamped markdown, one section per video.' It clearly distinguishes from siblings by specifying channel-level scope and explicitly contrasting with get_transcript for a single known video.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage context: 'Use for research across a creator's recent output' and names the alternative 'for one known video use get_transcript.' Also includes practical operational guidance on credits and rate limits, which helps the agent decide when and how to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_playlist_transcriptsGet Playlist TranscriptsARead-onlyInspect
Get transcripts for the videos in a YouTube playlist (in playlist order) as timestamped markdown, one section per video. Use for working through a course, series, or curated list; for one known video use get_transcript. Read-only; requires an API key. Charges 1 credit per video that returns a transcript, including repeat calls; videos without captions are skipped free. A 10-video call typically costs up to 10 credits, so start with a small limit. Rate limit: 5 requests per 10 seconds.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | YouTube playlist URL (e.g. https://www.youtube.com/playlist?list=PLxxxxxx) | |
| limit | No | Number of videos to fetch from the start of the playlist, 1-50 (default 10). Upper bound on the credit charge for this call. |
Output Schema
| Name | Required | Description |
|---|---|---|
| failed | Yes | Videos skipped without charge (no captions) |
| playlist | Yes | Playlist title |
| succeeded | Yes | Videos that returned a transcript (each charged 1 credit) |
| creditsUsed | Yes | Credits charged for this call |
| totalVideos | Yes | Videos attempted in this call |
| transcripts | Yes | All transcripts as timestamped markdown, one section per video, divider-separated |
| creditsRemaining | Yes | Account balance after this call |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and non-destructive, but the description adds significant behavioral details: requires an API key, charges 1 credit per transcript retrieved including repeat calls, skips videos without captions, provides a cost estimate, and specifies rate limits. These are valuable beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently front-loaded with the main action and output format, followed by usage context, cost, and rate limit. Every sentence contributes unique information with no redundancy or fluff. It is appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple schema (2 params) and existing output schema, the description covers all necessary angles: purpose, ordering, output format, usage contexts, alternative tools, cost behavior, rate limits, and authentication. It is fully complete for an agent to select and invoke confidently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for both 'url' and 'limit', so the baseline is 3. The description adds practical context for the 'limit' parameter by explaining the credit charge per video and advising 'start with a small limit', which meaningfully enhances understanding of cost implications. This exceeds the schema's pure definitional coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get transcripts') with a clear resource ('videos in a YouTube playlist') and output format ('timestamped markdown, one section per video'). It explicitly distinguishes itself from sibling tool get_transcript for single videos. This is unambiguous and well-differentiated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance: 'Use for working through a course, series, or curated list' and directly names the alternative for single videos: 'for one known video use get_transcript'. This clearly communicates appropriate contexts and exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_transcriptGet YouTube TranscriptARead-onlyInspect
Get the full transcript of a single YouTube video as timestamped markdown. Read-only: fetches existing captions, modifies nothing. Requires an API key; each successful call charges 1 credit, including repeat calls for the same video, so reuse a transcript already in context instead of re-fetching. Videos without captions return an error and cost nothing. Rate limit: 5 requests per 10 seconds.
| Name | Required | Description | Default |
|---|---|---|---|
| video | Yes | YouTube video ID (e.g. dQw4w9WgXcQ) or full video URL (youtube.com/watch?v=... or youtu.be/... forms) |
Output Schema
| Name | Required | Description |
|---|---|---|
| title | Yes | Video title |
| videoId | Yes | YouTube video ID |
| transcript | Yes | Full transcript as timestamped markdown |
| creditsUsed | Yes | Credits charged for this call |
| creditsRemaining | Yes | Account balance after this call |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and destructiveHint, but the description adds significant behavioral context: API key requirement, credit cost per call, error behavior for videos without captions, and a rate limit. This goes well beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, no wasted words. The core purpose is front-loaded, followed by cost/rate-limit caveats and error behavior. Each sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read-only tool with an output schema present, the description covers input, behavioral safety, cost, error conditions, and rate limits. There are no significant gaps given the structured fields.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'video' is fully described in the schema (100% coverage), including accepted formats. The description does not add extra parameter-specific details, but the schema carries the semantic load, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') with a clear resource ('full transcript of a single YouTube video') and output format ('timestamped markdown'). It distinguishes from siblings by emphasizing 'single video' vs channel/playlist tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context for when to use (single video) and practical guidance about credits and reusing transcripts. Does not explicitly name sibling alternatives for multi-video scenarios, but the 'single video' phrasing implicitly differentiates.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
polish_transcriptPolish YouTube TranscriptARead-onlyInspect
Get a cleaned-up transcript of a YouTube video's auto-generated captions: punctuation and capitalisation restored, filler and false starts removed, paragraphs added, misheard names fixed, faithful to what was said. Use when raw captions are too messy to read or quote; for a plain transcript use get_transcript. Read-only; requires an API key. Each call charges credits by transcript length (about 3 per 1,000 words, minimum 5), including repeat calls, so keep the result in context. Human-uploaded captions (already clean) and transcripts over ~7,000 words return an error without charging. Rate limit: 5 requests per 10 seconds.
| Name | Required | Description | Default |
|---|---|---|---|
| video | Yes | YouTube video ID (e.g. dQw4w9WgXcQ) or full video URL (youtube.com/watch?v=... or youtu.be/... forms) |
Output Schema
| Name | Required | Description |
|---|---|---|
| title | Yes | Video title |
| videoId | Yes | YouTube video ID |
| transcript | Yes | Cleaned transcript as timestamped markdown |
| creditsUsed | Yes | Credits charged for this call (scales by length) |
| creditsRemaining | Yes | Account balance after this call |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark readOnly=true and destructive=false; the description reinforces with 'Read-only' and adds significant non-obvious behavior: API key requirement, credit billing (โ3 per 1,000 words, min 5, repeat calls billed), error cases that avoid charges, and a 5 req/10s rate limit. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact yet information-dense; the first sentence states core purpose, the second gives usage guidance, and subsequent sentences handle cost, errors, and rate limits โ all non-redundant. Length is justified by the billing and rate-limit caveats.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one documented parameter, an output schema, and readOnly annotations, the description covers all operational essentials: prerequisites (API key), cost model, failure conditions, and throttling. There are no major behavioral gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the single 'video' parameter is well documented in the schema (ID or URL forms). The description adds no extra parameter-level meaning, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource ('Get a cleaned-up transcript') and enumerates concrete transformations (punctuation, filler removal, paragraphs, name fixes). It explicitly distinguishes from get_transcript, making its purpose unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states 'Use when raw captions are too messy to read or quote' and names the explicit alternative 'for a plain transcript use get_transcript'. It also lists error conditions (human-uploaded captions, over ~7,000 words), giving clear guidance on when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
- Changed
get_channel_transcripts1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "channel": { + "description": "Channel name", + "type": "string" + }, + "creditsRemaining": { + "description": "Account balance after this call", + "type": "number" + }, + "creditsUsed": { + "description": "Credits charged for this call", + "type": "number" + }, + "failed": { + "description": "Videos skipped without charge (no captions)", + "type": "number" + }, + "succeeded": { + "description": "Videos that returned a transcript (each charged 1 credit)", + "type": "number" + }, + "totalVideos": { + "description": "Videos attempted in this call", + "type": "number" + }, + "transcripts": { + "description": "All transcripts as timestamped markdown, one section per video, divider-separated", + "type": "string" + } + }, + "required": [ + "channel", + "totalVideos", + "succeeded", + "failed", + "transcripts", + "creditsUsed", + "creditsRemaining" + ], + "type": "object" +}
- Changed
get_playlist_transcripts1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "creditsRemaining": { + "description": "Account balance after this call", + "type": "number" + }, + "creditsUsed": { + "description": "Credits charged for this call", + "type": "number" + }, + "failed": { + "description": "Videos skipped without charge (no captions)", + "type": "number" + }, + "playlist": { + "description": "Playlist title", + "type": "string" + }, + "succeeded": { + "description": "Videos that returned a transcript (each charged 1 credit)", + "type": "number" + }, + "totalVideos": { + "description": "Videos attempted in this call", + "type": "number" + }, + "transcripts": { + "description": "All transcripts as timestamped markdown, one section per video, divider-separated", + "type": "string" + } + }, + "required": [ + "playlist", + "totalVideos", + "succeeded", + "failed", + "transcripts", + "creditsUsed", + "creditsRemaining" + ], + "type": "object" +}
- Changed
get_transcript1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "creditsRemaining": { + "description": "Account balance after this call", + "type": "number" + }, + "creditsUsed": { + "description": "Credits charged for this call", + "type": "number" + }, + "title": { + "description": "Video title", + "type": "string" + }, + "transcript": { + "description": "Full transcript as timestamped markdown", + "type": "string" + }, + "videoId": { + "description": "YouTube video ID", + "type": "string" + } + }, + "required": [ + "videoId", + "title", + "transcript", + "creditsUsed", + "creditsRemaining" + ], + "type": "object" +}
- Changed
polish_transcript1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "creditsRemaining": { + "description": "Account balance after this call", + "type": "number" + }, + "creditsUsed": { + "description": "Credits charged for this call (scales by length)", + "type": "number" + }, + "title": { + "description": "Video title", + "type": "string" + }, + "transcript": { + "description": "Cleaned transcript as timestamped markdown", + "type": "string" + }, + "videoId": { + "description": "YouTube video ID", + "type": "string" + } + }, + "required": [ + "videoId", + "title", + "transcript", + "creditsUsed", + "creditsRemaining" + ], + "type": "object" +}
4 tool updates
- Changed
get_channel_transcripts2 fields changed- changed
Input schema / properties / limit / descriptionPrevious value: -"Number of videos to fetch (default 10, max 50)"New value: +"Number of most-recent videos to fetch, 1-50 (default 10). Upper bound on the credit charge for this call." - changed
Input schema / properties / url / descriptionPrevious value: -"YouTube channel URL (e.g. https://www.youtube.com/@lexfridman)"New value: +"YouTube channel URL or handle (e.g. https://www.youtube.com/@lexfridman or @lexfridman)"
- Changed
get_playlist_transcripts1 field changed- changed
Input schema / properties / limit / descriptionPrevious value: -"Number of videos to fetch (default 10, max 50)"New value: +"Number of videos to fetch from the start of the playlist, 1-50 (default 10). Upper bound on the credit charge for this call."
- Changed
get_transcript1 field changed- changed
Input schema / properties / video / descriptionPrevious value: -"YouTube video ID (e.g. dQw4w9WgXcQ) or full video URL"New value: +"YouTube video ID (e.g. dQw4w9WgXcQ) or full video URL (youtube.com/watch?v=... or youtu.be/... forms)"
- Changed
polish_transcript1 field changed- changed
Input schema / properties / video / descriptionPrevious value: -"YouTube video ID (e.g. dQw4w9WgXcQ) or full video URL"New value: +"YouTube video ID (e.g. dQw4w9WgXcQ) or full video URL (youtube.com/watch?v=... or youtu.be/... forms)"
4 tool updates
- First observed
get_channel_transcripts - First observed
get_playlist_transcripts - First observed
get_transcript - First observed
polish_transcript
Related MCP Connectors
MCP server for RiverScript, an AI transcription platform - fetches transcripts shared via a link.
YouTube transcripts, search, channel browsing, and playlists for AI agents via MCP.
๐ฏ The fastest YouTube transcript + YouTube search MCP for AI agents. Try for free.
SubDownload exposes YouTube as an MCP-native data source. Connect via OAuth and your AI agent can summarize videos, fetch full transcripts (even for videos with no captions, via AI ASR), search across channels, and save everything into a private knowledge base. Works with Claude, ChatGPT, Cursor, and 40+ MCP clients. Free credits on signup, no card required.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for YouTubeTranscript.dev โ extract transcripts, manage history, and power AI assistants with YouTube content.542 npmMIT
- AlicenseNot gradedqualityCmaintenanceA comprehensive MCP server providing YouTube transcript retrieval, video search, channel browsing, playlist extraction, and upload monitoring for AI agents.10MIT
- AlicenseBqualityDmaintenanceAn MCP server designed to fetch transcripts for YouTube videos. It enables AI tools to access video text content for tasks like summarization, analysis, and key takeaway extraction.174MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables users to retrieve YouTube transcripts and perform video or channel searches without requiring Google API keys. It supports transcript chunking and provides tools for detailed video content analysis and channel metadata extraction.510 npm4MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.