MCP Server: Youtube Subtitles Extractor

MCP Server: Youtube Subtitles Extractor

This is an MCP server that extracts subtitles from a given YouTube link

aliencube

Developer Tools
Visit Server

README

MCP Server: Youtube Subtitles Extractor

👉👉👉 MOVED TO https://github.com/microsoft/mcp-dotnet-samples 👈👈👈

This is an MCP server that extracts subtitles from a given YouTube link.

Prerequisites

Getting Started

Run Azure Functions MCP server locally

  1. Get the repository root

    # bash/zsh
    REPOSITORY_ROOT=$(git rev-parse --show-toplevel)
    
    # PowerShell
    $REPOSITORY_ROOT = git rev-parse --show-toplevel
    
  2. Run the function app

    cd $REPOSITORY_ROOT/src/McpYouTubeSubtitlesExtractor.FunctionApp
    func start
    

Run Azure Functions MCP server remotely

  1. Login to Azure

    # Login with Azure CLI
    az login
    
    # Login with Azure Developer CLI
    azd auth login
    
  2. Deploy the Function app to Azure

    azd up
    

    While provisioning and deploying, you'll be asked to provide subscription ID, location, environment name and vNet

  3. After the deployment is complete, get the information by running the following commands:

    • function app name:

      azd env get-value AZURE_FUNCTION_NAME
      
    • MCP server access key:

      # bash/zsh
      az functionapp keys list \
          -g rg-$(azd env get-value AZURE_ENV_NAME) \
          -n $(azd env get-value AZURE_FUNCTION_NAME) \
          --query "systemKeys.mcp_extension" -o tsv
      
      # PowerShell
      az functionapp keys list `
          -g rg-$(azd env get-value AZURE_ENV_NAME) `
          -n $(azd env get-value AZURE_FUNCTION_NAME) `
          --query "systemKeys.mcp_extension" -o tsv
      

Connect MCP server to an MCP host/client

VS Code + Agent Mode + Local MCP server

  1. Open Command Palette by typing F1 or Ctrl+Shift+P on Windows or Cmd+Shift+P on Mac OS, and search MCP: List Servers.

  2. Choose mcp-youtube-subtitles-extractor-function-local then click Start Server.

  3. Enter prompt like:

    Summarise this YouTube video link in 5 bullet points: https://youtu.be/XwnEtZxaokg?si=V39ta45iMni_Uc_m
    
  4. It will ask you to run get_available_languages followed by get_subtitle. You might be asked to choose language for the subtitle.

  5. Confirm the summary of the video.

MCP Inspector + Local MCP server

  1. Run MCP Inspector

    npx @modelcontextprotocol/inspector node build/index.js
    
  2. Open a web browser and navigate to the MCP Inspector web app from the URL displayed by the app (e.g. http://0.0.0.0:5173)

  3. Set the transport type to SSE

  4. Set the URL to your running Function app's SSE endpoint and Connect:

    http://0.0.0.0:7071/runtime/webhooks/mcp/sse
    
  5. Click List Tools.

  6. Click on a tool and Run Tool with a YouTube link and language code like en or ko.

VS Code + Agent Mode + Remote MCP server

  1. Open Command Palette by typing F1 or Ctrl+Shift+P on Windows or Cmd+Shift+P on Mac OS, and search MCP: List Servers.

  2. Choose mcp-youtube-subtitles-extractor-function-remote then click Start Server.

  3. Enter the function app name.

  4. Enter the MCP server access key.

  5. Enter prompt like:

    Summarise this YouTube video link in 5 bullet points: https://youtu.be/XwnEtZxaokg?si=V39ta45iMni_Uc_m
    
  6. It will ask you to run get_available_languages followed by get_subtitle. You might be asked to choose language for the subtitle.

  7. Confirm the summary of the video.

MCP Inspector + Remote MCP server

  1. Run MCP Inspector

    npx @modelcontextprotocol/inspector node build/index.js
    
  2. Open a web browser and navigate to the MCP Inspector web app from the URL displayed by the app (e.g. http://0.0.0.0:5173)

  3. Set the transport type to SSE

  4. Set the URL to your running Function app's SSE endpoint and Connect:

    https://<functionapp-name>.azurewebsites.net/runtime/webhooks/mcp/sse?code=<functions-mcp-extension-system-key>
    
  5. Click List Tools.

  6. Click on a tool and Run Tool with a YouTube link and language code like en or ko.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python