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
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.8/5 across 4 of 4 tools scored.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true and destructiveHint=false, but the description adds substantial non-obvious behaviors: per-video credit charges, repeat calls charged, videos without captions skipped free, API key requirement, and a rate limit of 5 requests per 10 seconds. This goes well beyond the annotation's minimal safety info.
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 front-loaded with the core purpose, then usage, then cost and rate-limit details. Each of the three sentences carries distinct, necessary information without redundancy or fluff.
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 covers the purpose, output format, usage context, cost model, API key requirement, rate limit, and free skips. With an output schema present, return values are handled structurally, so this leaves no major gaps for an agent to misuse the 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 coverage is 100% for both parameters (url and limit), so the schema already documents their basic meaning. The description adds extra semantics for limit: it acts as an upper bound on credit charge and gives typical cost examples ('A 10-video call typically costs up to 10 credits'), which helps agents select an appropriate value.
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?
Description states a specific verb and resource: 'Get transcripts for a YouTube channel's most recent videos (newest first) as timestamped markdown, one section per video.' It also distinguishes from sibling tools by noting that for a single known video, get_transcript should be used.
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?
Explicitly provides when to use: 'Use for research across a creator's recent output; for one known video use get_transcript.' This names an alternative and gives clear context, fulfilling the guidelines requirement.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and idempotentHint=false, and the description aligns by saying 'Read-only' and 'including repeat calls' for credit charges. It adds valuable context: API key requirement, per-video credit cost, free skips for videos without captions, and a rate limit.
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?
Four sentences each serve a distinct purpose: purpose/format, usage/alternative, cost behavior, and rate limit. No wasted words, perfectly front-loaded with the core function.
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 covers selection criteria, invocation constraints (auth, cost, rate limit), output format, and differentiates from siblings. With an output schema present, no further return-value detail is needed.
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%, so baseline is 3. The description adds extra meaning to the 'limit' parameter by framing it as an upper bound on credit charge ('start with a small limit'), which is useful beyond the schema's default/maximum.
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 states exactly what the tool does: gets transcripts for videos in a YouTube playlist in playlist order as timestamped markdown. It clearly distinguishes from sibling get_transcript by explicitly directing 'for one known video use get_transcript'.
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?
Explicitly states when to use this tool ('for working through a course, series, or curated list') and provides an alternative for a single video. Also includes practical usage constraints such as credit costs and rate limits.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations, the description adds critical behavioral details: API key requirement, 1-credit cost per call including repeats, advice to reuse transcripts, no cost for videos without captions, and a rate limit of 5 requests per 10 seconds. This enriches the annotation readOnlyHint with concrete operational 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?
Four sentences, each adding essential value: purpose/output, read-only nature, cost/billing, and rate limiting. Front-loaded with the core action, no fluff 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?
For a simple one-parameter read-only tool with an output schema, the description covers all necessary behavioral aspects: what it returns, side effects (none destructive), costs, error conditions, and rate limits. Completely sufficient for an agent to 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?
The schema fully describes the single parameter 'video' with details on ID and URL forms (100% coverage). The description adds 'single YouTube video' scope but no additional syntactic or semantic detail, so it meets the baseline without compensating further.
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 states a specific verb ('Get') and resource ('full transcript of a single YouTube video') with an explicit output format ('timestamped markdown'). It clearly differentiates from sibling tools by emphasizing 'single video', unlike channel/playlist transcript 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?
The description provides clear usage context: read-only, requires API key, charges credits, rate limits, and error behavior. It implies a single-video scope versus siblings, but does not explicitly name alternatives or state when not to use. Solid guidance but not fully explicit about when to choose this over other tools.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses credit charging (about 3 per 1,000 words, minimum 5), repeat calls are charged, requires API key, rate limit of 5 requests per 10 seconds, and error cases that do not charge. This is rich behavioral context.
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 a single, well-organized paragraph. Every sentence adds value: purpose, use case, alternative, read-only, credits, errors, and rate limit—no filler.
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 tool's complexity, the description explains expected behavior (cleaning), costs, error conditions, and rate limits. With an output schema present, return format is covered, making the description complete for selection and invocation.
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 schema already fully describes the single 'video' parameter with ID/URL examples (100% coverage). The description adds no additional parameter semantics, so it meets the baseline of 3.
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 a cleaned-up transcript' and details the exact transformations (punctuation, capitalisation, filler removal). It distinguishes itself from sibling get_transcript by noting that it polishes auto-generated captions.
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?
It explicitly states when to use ('Use when raw captions are too messy to read or quote') and directs to an alternative ('for a plain transcript use get_transcript'). It also excludes cases that error out (human-uploaded captions, transcripts over ~7,000 words).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for YouTubeTranscript.dev — extract transcripts, manage history, and power AI assistants with YouTube content.566MIT
- Alicense-qualityDmaintenanceA comprehensive MCP server providing YouTube transcript retrieval, video search, channel browsing, playlist extraction, and upload monitoring for AI agents.7MIT
- 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.173MIT
- 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.5414MIT