The YouTube Transcript MCP Server provides a simple interface for accessing captions and subtitles from YouTube videos. It supports multiple video URL formats and offers language-specific transcript retrieval with detailed metadata in responses. This server enables AI assistants to directly extract and analyze text content from YouTube videos, making it easier to reference or discuss video content.
The YouTube Transcript MCP Server allows AI assistants to retrieve transcripts from YouTube videos, providing direct access to video captions and subtitles through a simple interface.
To install the YouTube Transcript Server automatically via Smithery:
npx -y @smithery/cli install @kimtaeyoon83/mcp-server-youtube-transcript --client claude
You can also install using the mcp-get tool:
npx @michaellatman/mcp-get@latest install @kimtaeyoon83/mcp-server-youtube-transcript
To use with Claude Desktop or other AI assistants, add this server configuration:
{
"mcpServers": {
"youtube-transcript": {
"command": "npx",
"args": ["-y", "@kimtaeyoon83/mcp-server-youtube-transcript"]
}
}
}
This tool extracts transcripts from YouTube videos.
Parameters:
url
(string, required): YouTube video URL or video IDlang
(string, optional, default: "en"): Language code for transcript (e.g., 'ko', 'en')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"
});
Simply ask Claude to extract subtitles from a YouTube video by providing the URL:
Extract subtitles from this YouTube video: https://youtu.be/ODaHJzOyVCQ
npm install
npm run build
npm run watch
For testing:
npm test
For debugging (using MCP Inspector):
npm run inspector
This MCP server is licensed under the MIT License.