Skip to main content
Glama
kimtaeyoon83

mcp-server-youtube-transcript

by kimtaeyoon83

Сервер транскриптов YouTube

значок кузнеца

Сервер Model Context Protocol, который позволяет извлекать транскрипты из видео YouTube. Этот сервер обеспечивает прямой доступ к титрам и субтитрам видео через простой интерфейс.

Установка через Smithery

Чтобы автоматически установить YouTube Transcript Server для Claude Desktop через Smithery :

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

Компоненты

Инструменты

  • получить_транскрипт

    • Извлечение транскриптов из видео YouTube

    • Входные данные:

      • url (строка, обязательно): URL-адрес видео YouTube или идентификатор видео

      • lang (строка, необязательно, по умолчанию: "en"): Код языка для транскрипта (например, 'ko', 'en')

Related MCP server: YouTube Transcript Extractor MCP

Основные характеристики

  • Поддержка нескольких форматов URL-адресов видео

  • Поиск транскриптов по конкретному языку

  • Подробные метаданные в ответах

Конфигурация

Для использования с Claude Desktop добавьте следующую конфигурацию сервера:

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

Установить с помощью инструмента

mcp-get Инструмент командной строки для установки и управления серверами Model Context Protocol (MCP).

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

Awesome-mcp-серверы

awesome-mcp-servers Специально подобранный список великолепных серверов Model Context Protocol (MCP).

Разработка

Предпосылки

  • Node.js 18 или выше

  • нпм или пряжа

Настраивать

Установить зависимости:

npm install

Сборка сервера:

npm run build

Для разработки с автоматической пересборкой:

npm run watch

Тестирование

npm test

Отладка

Поскольку серверы MCP взаимодействуют через stdio, отладка может быть сложной. Мы рекомендуем использовать MCP Inspector для разработки:

npm run inspector

Запуск оценок

Пакет evals загружает клиент mcp, который затем запускает файл index.ts, поэтому нет необходимости перестраиваться между тестами. Вы можете загрузить переменные среды, указав префикс команды npx. Полную документацию можно найти здесь .

OPENAI_API_KEY=your-key  npx mcp-eval src/evals/evals.ts src/index.ts

Обработка ошибок

Сервер реализует надежную обработку ошибок для распространенных сценариев:

  • Недействительные URL-адреса или идентификаторы видео

  • Недоступные стенограммы

  • Проблемы с доступностью языка

  • Ошибки сети

Примеры использования

  1. Получить расшифровку по URL-адресу видео:

await server.callTool("get_transcript", {
  url: "https://www.youtube.com/watch?v=VIDEO_ID",
  lang: "en"
});
  1. Получить расшифровку по идентификатору видео:

await server.callTool("get_transcript", {
  url: "VIDEO_ID",
  lang: "ko"
});
  1. Как извлечь субтитры YouTube в приложении Claude Desktop

chat: https://youtu.be/ODaHJzOyVCQ?si=aXkJgso96Deri0aB Extract subtitles

Соображения безопасности

Сервер:

  • Проверяет все входные параметры

  • Изящно обрабатывает ошибки API YouTube

  • Реализует тайм-ауты для извлечения расшифровки

  • Предоставляет подробные сообщения об ошибках для устранения неполадок

Лицензия

Этот сервер MCP лицензирован по лицензии MIT. Подробности см. в файле LICENSE.

Available Tools

1 tool
get_transcriptA
Read-only

Extract transcript from a YouTube video URL or ID. Automatically falls back to available languages if requested language is not available.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesYouTube video URL or ID
langNoLanguage code for transcript (e.g., 'ko', 'en'). Will fall back to available language if not found.en
include_timestampsNoInclude timestamps in output (e.g., '[0:05] text'). Useful for referencing specific moments. Default: false
strip_adsNoFilter out sponsored segments from transcript based on chapter markers (e.g., chapters marked as 'Werbung', 'Ad', 'Sponsor'). Default: true

Output Schema

ParametersJSON Schema
NameRequiredDescription
metaNoTitle | Author | Subs | Views | Date
contentYes

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only and open-world hints, but the description adds valuable behavioral context: the automatic language fallback mechanism and the ad-stripping functionality based on chapter markers. This goes beyond annotations by explaining conditional behaviors and processing logic, though it doesn't cover rate limits or error handling.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that efficiently conveys the core functionality and key behavioral traits (language fallback). Every word serves a purpose, with no redundancy or unnecessary elaboration, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (4 parameters, read-only operation) and the presence of both rich annotations and an output schema, the description is largely complete. It covers the main action and notable behaviors, though it could benefit from mentioning output format or error cases. The output schema likely handles return values, reducing the burden on the description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the input schema fully documents all parameters. The description mentions language fallback and ad-stripping, which are already covered in the schema descriptions for 'lang' and 'strip_ads'. It adds no significant semantic information beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Extract transcript'), resource ('from a YouTube video'), and input type ('URL or ID'). It also mentions the fallback behavior for language selection, which adds specificity. With no sibling tools to distinguish from, this is maximally clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for extracting transcripts from YouTube videos, but provides no explicit guidance on when to use this tool versus alternatives (e.g., other transcript tools or manual methods). Since there are no sibling tools, it doesn't need to differentiate, but it lacks broader context about prerequisites or typical use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev1.0.0
    • Addedget_transcript

TDQS

A3.9/5.0
Disambiguation5/5

With only one tool, there is no possibility of ambiguity or overlap with other tools. The tool's purpose is clearly defined and distinct by default.

Naming Consistency5/5

A single tool inherently has consistent naming, as there are no other tools to compare it against. The name 'get_transcript' follows a clear verb_noun pattern.

Tool Count2/5

One tool is too few for a server named 'youtube-transcript', which suggests a broader domain. A complete surface might include tools for searching videos, listing transcripts, or handling metadata, making this feel thin and incomplete.

Completeness2/5

The server's purpose implies transcript-related operations, but with only a 'get' tool, there are significant gaps. For example, no tools for listing available transcripts, searching within transcripts, or managing transcript data, which limits agent workflows.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kimtaeyoon83/mcp-server-youtube-transcript'

If you have feedback or need assistance with the MCP directory API, please join our Discord server