MCP Server: Youtube Subtitles Extractor
This is an MCP server that extracts subtitles from a given YouTube link
aliencube
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
- .NET 9 SDK
- Visual Studio Code with
- C# Dev Kit extension
- Azure Functions extension extension
- Azure Functions Core Tools
- Azure CLI
- Azure Developer CLI
- Docker Desktop
Getting Started
- Run Azure Functions MCP server locally
- Run Azure Functions MCP server remotely
- Connect MCP server to an MCP host/client
Run Azure Functions MCP server locally
-
Get the repository root
# bash/zsh REPOSITORY_ROOT=$(git rev-parse --show-toplevel)
# PowerShell $REPOSITORY_ROOT = git rev-parse --show-toplevel
-
Run the function app
cd $REPOSITORY_ROOT/src/McpYouTubeSubtitlesExtractor.FunctionApp func start
Run Azure Functions MCP server remotely
-
Login to Azure
# Login with Azure CLI az login # Login with Azure Developer CLI azd auth login
-
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
-
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
-
Open Command Palette by typing
F1
orCtrl
+Shift
+P
on Windows orCmd
+Shift
+P
on Mac OS, and searchMCP: List Servers
. -
Choose
mcp-youtube-subtitles-extractor-function-local
then clickStart Server
. -
Enter prompt like:
Summarise this YouTube video link in 5 bullet points: https://youtu.be/XwnEtZxaokg?si=V39ta45iMni_Uc_m
-
It will ask you to run
get_available_languages
followed byget_subtitle
. You might be asked to choose language for the subtitle. -
Confirm the summary of the video.
MCP Inspector + Local MCP server
-
Run MCP Inspector
npx @modelcontextprotocol/inspector node build/index.js
-
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)
-
Set the transport type to
SSE
-
Set the URL to your running Function app's SSE endpoint and Connect:
http://0.0.0.0:7071/runtime/webhooks/mcp/sse
-
Click List Tools.
-
Click on a tool and Run Tool with a YouTube link and language code like
en
orko
.
VS Code + Agent Mode + Remote MCP server
-
Open Command Palette by typing
F1
orCtrl
+Shift
+P
on Windows orCmd
+Shift
+P
on Mac OS, and searchMCP: List Servers
. -
Choose
mcp-youtube-subtitles-extractor-function-remote
then clickStart Server
. -
Enter the function app name.
-
Enter the MCP server access key.
-
Enter prompt like:
Summarise this YouTube video link in 5 bullet points: https://youtu.be/XwnEtZxaokg?si=V39ta45iMni_Uc_m
-
It will ask you to run
get_available_languages
followed byget_subtitle
. You might be asked to choose language for the subtitle. -
Confirm the summary of the video.
MCP Inspector + Remote MCP server
-
Run MCP Inspector
npx @modelcontextprotocol/inspector node build/index.js
-
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)
-
Set the transport type to
SSE
-
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>
-
Click List Tools.
-
Click on a tool and Run Tool with a YouTube link and language code like
en
orko
.
Recommended Servers
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.
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.
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.
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.
@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.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

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.

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.