Back to MCP Catalog
YouTube Transcript MCP Server
CommunicationJavaScript
A Model Context Protocol server for Communication

About this MCP

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.

Documentation

Overview

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.

Installation Options

Using Smithery

To install the YouTube Transcript Server automatically via Smithery:

npx -y @smithery/cli install @kimtaeyoon83/mcp-server-youtube-transcript --client claude

Using MCP-Get

You can also install using the mcp-get tool:

npx @michaellatman/mcp-get@latest install @kimtaeyoon83/mcp-server-youtube-transcript

Manual Configuration

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"]
    }
  }
}

Available Tools

get_transcript

This tool extracts transcripts from YouTube videos.

Parameters:

  • url (string, required): YouTube video URL or video ID
  • lang (string, optional, default: "en"): Language code for transcript (e.g., 'ko', 'en')

Usage Examples

Getting a Transcript by Video URL

await server.callTool("get_transcript", {
  url: "https://www.youtube.com/watch?v=VIDEO_ID",
  lang: "en"
});

Getting a Transcript by Video ID

await server.callTool("get_transcript", {
  url: "VIDEO_ID",
  lang: "ko"
});

Using in Claude Desktop

Simply ask Claude to extract subtitles from a YouTube video by providing the URL:

Extract subtitles from this YouTube video: https://youtu.be/ODaHJzOyVCQ

Features

  • Support for multiple video URL formats
  • Language-specific transcript retrieval
  • Detailed metadata in responses
  • Robust error handling for common scenarios:
    • Invalid video URLs or IDs
    • Unavailable transcripts
    • Language availability issues
    • Network errors

Development

Prerequisites

  • Node.js 18 or higher
  • npm or yarn

Setup for Development

  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. For development with auto-rebuild:
npm run watch

Testing and Debugging

For testing:

npm test

For debugging (using MCP Inspector):

npm run inspector

License

This MCP server is licensed under the MIT License.

Related MCPs

iMessage Query MCP Server
CommunicationPython

Access and query your iMessage conversations through Model Context Protocol

Slack MCP Server
CommunicationTypeScript

Enables Claude to interact with Slack workspaces through the Slack API

Bluesky Context Server
CommunicationTypeScript

An MCP server that enables AI assistants to query and interact with Bluesky social network

About Model Context Protocol

Model Context Protocol (MCP) allows AI models to access external tools and services, extending their capabilities beyond their training data.

Generate Cursor Documentation

Save time on coding by generating custom documentation and prompts for Cursor IDE.