YouTube Transcript Downloader
Server Details
Clean YouTube transcripts for agents: single videos, channels, playlists, plus AI caption cleanup.
- 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 use case: single video, channel recent videos, playlist, and transcript polishing. No overlapping purposes.
All tools follow a verb_noun pattern (get_transcript, get_channel_transcripts, get_playlist_transcripts, polish_transcript), consistent and predictable.
Four tools cover the core needs of a transcript downloader (single, channel, playlist, polish) without being excessive or insufficient.
The set covers the main operations for accessing transcripts, though additional features like language selection or format options are absent.
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 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 |
Tool Definition Quality
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 |
Tool Definition Quality
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 |
Tool Definition Quality
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.
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
- AlicenseAqualityBmaintenanceExtract YouTube transcripts for AI agents, RAG pipelines, and LLM workflows. Supports any YouTube URL. Returns clean text or timestamped segments. No API keys required.14MIT
- Alicense-qualityDmaintenanceExtracts clean text transcripts from YouTube videos using their subtitles and returns them as plain text.13MIT
- FlicenseBquality-maintenanceEnables extraction and processing of YouTube video transcripts from individual videos, channels, and playlists. Supports transcript search, batch processing, multiple output formats (JSON, text, SRT, VTT), and bulk operations across multiple videos.1134
- AlicenseAqualityDmaintenanceFetches and cleans YouTube video transcripts using yt-dlp, with fallback from manual to auto-generated subtitles and deduplication.1MIT