drio
Open app

YouTube Transcript MCP Server

Source

MCP server for fetching youtube transcripts

Catalog onlyCatalog onlySTDIO

Overview

The YouTube Transcript MCP Server is a tool designed to fetch transcripts from YouTube videos using the Model Context Protocol (MCP). It allows users to retrieve video transcripts in various formats, making it easier for Large Language Models (LLMs) to access and process this data.

To use the server, clone the repository from GitHub, set up the environment, and run the server. You can then use the fetch_youtube_transcript tool to retrieve transcripts by providing the video ID and desired format.

  • YouTube Transcript Retrieval: Fetch transcripts for YouTube videos in multiple languages. - Flexible Output Formats: Obtain transcripts in either plain text or JSON format. - MCP Integration: Seamlessly integrates with MCP-compatible clients and tools.
  1. Retrieving transcripts for educational videos for research purposes.
  2. Analyzing video content for sentiment analysis or content summarization.
  3. Enabling LLMs to access video transcripts for enhanced understanding and processing.

Add to your AI client

Use these steps to connect YouTube Transcript MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-youtube-praveenkishore": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-youtube-praveenkishore"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-youtube-praveenkishore": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-youtube-praveenkishore"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-youtube-praveenkishore": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-youtube-praveenkishore"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-youtube-praveenkishore": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-youtube-praveenkishore"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-youtube-praveenkishore": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-youtube-praveenkishore"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-youtube-praveenkishore": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-youtube-praveenkishore"
      ]
    }
  }
}

FAQ

Can I fetch transcripts in multiple languages?

Yes! The server supports fetching transcripts in various languages based on the video content.

What formats can I retrieve the transcripts in?

You can obtain transcripts in plain text or JSON format, depending on your needs.

Is there a specific setup required to run the server?

Yes, you need to install the `uv` package, clone the repository, and set up a virtual environment to run the server.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":2607,"uuid":"9728deb1-bbd3-4bf6-8834-3c0ca2872b6c","name":"mcp-server-youtube","title":"YouTube Transcript MCP Server","description":"MCP server for fetching youtube transcripts","avatar_url":"https://avatars.githubusercontent.com/u/8823044?v=4","created_at":"$D2025-03-13T09:06:08.944Z","updated_at":"$D2025-03-13T09:26:28.640Z","status":"created","author_name":"PraveenKishore","author_avatar_url":"https://avatars.githubusercontent.com/u/8823044?v=4","tags":"youtube-transcript,mcp-server,transcript-fetcher","category":"research-and-data","is_featured":false,"sort":1,"url":"https://github.com/PraveenKishore/mcp-server-youtube","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":"{\"star\":\"0\",\"license\":\"\",\"language\":\"Jupyter Notebook\",\"is_official\":false,\"latest_commit_time\":\"2025-03-11 04:43:34\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

YouTube Transcript MCP Server — MCP Registry