Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
MCP server to directly download YouTube video transcripts, enabling easy access to captions and subtitles for various applications.
GitHub MCP Server enables advanced automation and interaction capabilities for developers and tools using Model Context Protocol.
A Model Context Protocol server that enables retrieval of transcripts from YouTube videos. This server provides direct access to video captions and subtitles through a simple interface.
Key features:
Configuration for Claude Desktop:
{
"mcpServers": {
"youtube-transcript": {
"command": "npx",
"args": ["-y", "@kimtaeyoon83/mcp-server-youtube-transcript"]
}
}
}
Tools:
get_transcript
- Extracts transcripts from YouTube videos. Inputs include video URL/ID and optional language code.Usage Examples:
await server.callTool("get_transcript", {
url: "https://www.youtube.com/watch?v=VIDEO_ID",
lang: "en"
});
await server.callTool("get_transcript", {
url: "VIDEO_ID",
lang: "ko"
});
Error Handling: The server implements robust error handling for common scenarios: