mcp-youtube-transcript-downloader
Allows downloading transcripts from YouTube videos using the Supadata API, providing tools to retrieve and save transcripts for analysis.
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., "@mcp-youtube-transcript-downloaderget transcript of https://youtu.be/dQw4w9WgXcQ"
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.
š¬ MCP YouTube Transcript Downloader
Download YouTube video transcripts directly into your AI workflow ā no more copying/pasting!
A minimalist MCP server that fetches transcripts from YouTube videos using the Supadata API. Perfect for AI assistants that need to analyze video content, create summaries, or extract key information.
ā” Features
šÆ Two handy tools ā
get_transcriptfor quick downloads,get_transcript_and_savefor full path controlš¦ Zero dependencies ā lightweight and fast
š Flexible auth ā token from file or environment variable
š”ļø Basic error handling ā clear error messages when things go wrong
Related MCP server: ytt-mcp
š Quick Start
Prerequisites
Node.js 18 or higher
A free Supadata API key
Installation
# Install dependencies
npm install
# Build the project
npm run build
# Or use directly with npx
npx @milor123/mcp-youtube-transcript-downloaderGet Your Free API Key
Sign up at https://supadata.ai
100 requests/month FREE ā no credit card required! Perfect for personal projects and experimentation.
Configuration
Create a token_api.txt file in the project root with your API key:
sd_your_api_key_hereOr set an environment variable:
export SUPADATA_API_KEY="sd_your_api_key_here"š„ Available Tools
get_transcript
Downloads a YouTube video transcript and saves it to a .txt file. Returns the transcript content and filename for use in subsequent operations.
Parameter | Type | Required | Description |
| string | ā | Full YouTube video URL (e.g., |
| string | ā | Custom filename without extension. If omitted, uses the video ID |
Returns:
contentā The full transcript text_meta.filenameā The filename where transcript was saved_meta.videoIdā The extracted YouTube video ID
Example request:
{
"youtube_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"filename": "rick_roll_transcript"
}Example response:
{
"content": [
{
"type": "text",
"text": "Never gonna give you up, never gonna let you down..."
}
],
"_meta": {
"filename": "rick_roll_transcript.txt",
"videoId": "dQw4w9WgXcQ"
}
}get_transcript_and_save
Downloads a YouTube video transcript and saves it to a specific filepath of your choice. Great when you need precise control over where files are stored.
Parameter | Type | Required | Description |
| string | ā | Full YouTube video URL |
| string | ā | Full filepath including |
Returns:
Confirmation message with the filepath where the transcript was saved
Example request:
{
"youtube_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"filepath": "C:/Users/You/Documents/my_transcripts/rick_roll.txt"
}Example response:
{
"content": [
{
"type": "text",
"text": "Transcript saved to C:/Users/You/Documents/my_transcripts/rick_roll.txt"
}
]
}š” Tip: This tool automatically creates parent directories if they don't exist!
š¤ AI Client Configuration
OpenCode
Option 1 - Remote (recommended - coming soon)
{
"mcpServers": {
"youtube-transcript": {
"type": "remote",
"url": "https://your-remote-mcp-server.com/youtube-transcript",
"environment": {
"SUPADATA_API_KEY": "sd_your_api_key_here"
}
}
}
}Remote hosting allows sharing a single MCP server across multiple users. Contact the maintainer for server access.
Option 2 - Local (npx installation)
{
"mcpServers": {
"youtube-transcript": {
"type": "local",
"command": ["npx", "@milor123/mcp-youtube-transcript-downloader"],
"enabled": true,
"environment": {
"SUPADATA_API_KEY": "sd_28bee9cd727665ed7a6ceebcf4c90334"
}
}
}
}Claude Desktop
{
"mcpServers": {
"youtube-transcript": {
"command": "node",
"args": ["/full/path/to/dist/index.js"],
"env": {
"SUPADATA_API_KEY": "sd_your_api_key_here"
}
}
}
}š° Supadata Free Tier
Feature | Limit |
Requests per month | 100 |
Credit card required | ā No |
Cost | Free! |
Get your API key at https://supadata.ai
š Project Structure
@milor123/mcp-youtube-transcript-downloader/
āāā src/
ā āāā index.ts # Main MCP server implementation
āāā dist/ # Compiled JavaScript output (generated after build)
āāā token_api.txt # Your API token (never commit this!)
āāā package.json
āāā tsconfig.json
āāā README.mdā¤ļø Credits & Acknowledgments
This project was inspired by a script created by Mutti from GreasyFork. Thank you for the original idea that sparked this MCP server!
š License
MIT License ā feel free to use it in your projects!
This server cannot be installed
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
- Flicense-qualityCmaintenanceSimple MCP server that returns the transcription of a Youtube video using url and desired language.Last updated
- 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.Last updated172MIT
- AlicenseAqualityDmaintenanceMCP server for YouTubeTranscript.dev ā extract transcripts, manage history, and power AI assistants with YouTube content.Last updated556MIT
- AlicenseAqualityDmaintenanceMCP server to fetch transcripts for YouTube videos, enabling users to retrieve and summarize video content via natural language.Last updated172MIT
Related MCP Connectors
MCP server exposing the AceDataCloud Fish Audio API (text-to-speech with voice conditioning)
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for AI dialogue using various LLM models via AceDataCloud
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/Milor123/mcp-youtube-transcript-downloader'
If you have feedback or need assistance with the MCP directory API, please join our Discord server