Back to MCP directory
publicPublicdnsLocal runtime

YouTube Playlist Transcripts

一个实验性的MCP服务器,可将YouTube播放列表的转录文本提供为服务

article

README

🚀 电子节目单 - MCP

这是一个实验性的MCP服务器,其核心价值在于让YouTube播放列表的转录内容变得可访问。当前,服务器预装了KubeCon伦敦2025的转录内容,不过你可以通过修改URL轻松更换为其他内容。

在Claude中运行MCP

🚀 快速开始

📦 安装指南

按照以下步骤安装本项目:

# 克隆此仓库
git clone git@github.com:luebken/playlist-mcp.git; cd playlist-mcp

# 安装Python依赖项
uv venv
source .venv/bin/activate
uv pip install -e .

# 填充转录缓存和向量数据库。
uv run server.py https://www.youtube.com/playlist?list=PLj6h78yzYM2MP0QhYFK8HOb8UqgbIkLMc

💻 使用示例

在Claude桌面的设置

在Claude桌面中进行如下配置:

# 配置Claude > 设置 > 开发者 > 编辑配置
# /Users/YOUR_USERNAME/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
      "playlist-mcp": {
          "command": "uv",
          "args": [
              "--directory",
              "/PATH/TO/PARENT/playlist-mcp/",
              "run",
              "server.py",
              "https://www.youtube.com/playlist?list=PLj6h78yzYM2MP0QhYFK8HOb8UqgbIkLMc"
          ]
      }
  }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client