.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/kimtaeyoon83/mcp-server-youtube-transcript
home/mcp-servers/kimtaeyoon83/mcp-server-youtube-transcript
kimtaeyoon83 avatar

mcp-server-youtube-transcript

bykimtaeyoon83· 1 MCP server

Installs

4.1k

Stars

575

Forks

97

Category

Browser & Automation

View on GitHub

TL;DR

A Model Context Protocol server that enables retrieval of transcripts from YouTube videos. This server provides direct access to video captions and subtitles through a simple interface.

How to install mcp-server-youtube-transcript?

kimtaeyoon83/mcp-server-youtube-transcript
$git clone https://github.com/kimtaeyoon83/mcp-server-youtube-transcript

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-server-youtube-transcript by running `git clone https://github.com/kimtaeyoon83/mcp-server-youtube-transcript`, then use it for the current task and follow its documentation at https://github.com/kimtaeyoon83/mcp-server-youtube-transcript.

Files · 1

View on GitHub
README.md
1[![MseeP.ai Security Assessment Badge](https://mseep.net/pr/kimtaeyoon83-mcp-server-youtube-transcript-badge.png)](https://mseep.ai/app/kimtaeyoon83-mcp-server-youtube-transcript)
2 
3# YouTube Transcript Server
4[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/kimtaeyoon83/mcp-server-youtube-transcript)](https://archestra.ai/mcp-catalog/kimtaeyoon83__mcp-server-youtube-transcript)
5 
6[![smithery badge](https://smithery.ai/badge/@kimtaeyoon83/mcp-server-youtube-transcript)](https://smithery.ai/server/@kimtaeyoon83/mcp-server-youtube-transcript)
7 
8A Model Context Protocol server that enables retrieval of transcripts from YouTube videos. This server provides direct access to video captions and subtitles through a simple interface.
9 
10<a href="https://glama.ai/mcp/servers/z429kk3te7"><img width="380" height="200" src="https://glama.ai/mcp/servers/z429kk3te7/badge" alt="mcp-server-youtube-transcript MCP server" /></a>
11 
12### Installing via Smithery
13 
14To install YouTube Transcript Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@kimtaeyoon83/mcp-server-youtube-transcript):
15 
16```bash
17npx -y @smithery/cli install @kimtaeyoon83/mcp-server-youtube-transcript --client claude
18```
19 
20## Components
21 
22### Tools
23 
24- **get_transcript**
25 - Extract transcripts from YouTube videos
26 - Inputs:
27 - `url` (string, required): YouTube video URL, Shorts URL, or video ID
28 - `lang` (string, optional, default: "en"): Language code for transcript (e.g., 'ko', 'en'). Automatically falls back to available languages if requested language is not found.
29 - `include_timestamps` (boolean, optional, default: false): Include timestamps in output (e.g., '[0:05] text')
30 - `strip_ads` (boolean, optional, default: true): Filter out sponsorships, ads, and promotional content from transcript based on chapter markers
31 
32- **analyze_video** (optional, requires a TwelveLabs API key)
33 - Analyze a video with [TwelveLabs](https://twelvelabs.io) Pegasus, a video-understanding model. Unlike `get_transcript`, this reasons over what is *shown* on screen, so it produces useful summaries and answers even for videos with little or no speech (demos, gameplay, b-roll, music videos).
34 - Inputs:
35 - `url` (string, required): A publicly reachable **direct video URL** (e.g. an `.mp4`/`.mov`/`.webm` link or a pre-signed URL). TwelveLabs fetches the file server-side, so a YouTube watch page URL will not work — it serves HTML, not a raw video stream.
36 - `prompt` (string, optional): Instruction or question for the model (e.g. `"Summarize this video in 3 sentences"` or `"What products are shown?"`). Defaults to a general summary.
37 - `model` (string, optional, default: `"pegasus1.2"`): Pegasus model to use (`"pegasus1.2"` or `"pegasus1.5"`).
38 - `max_tokens` (number, optional, default: 2048): Maximum response length in tokens.
39 - Requires the `TWELVELABS_API_KEY` environment variable. The transcript tool works without it; analysis is fully opt-in. Grab a free key at [twelvelabs.io](https://twelvelabs.io) — there's a generous free tier.
40 
41## Key Features
42 
43- Support for multiple video URL formats (including YouTube Shorts)
44- Language-specific transcript retrieval with automatic fallback
45- Optional timestamps for referencing specific moments
46- Built-in ad/sponsorship filtering (enabled by default)
47- Zero external dependencies for transcript fetching
48- Detailed metadata in responses
49 
50## Configuration
51 
52To use with Claude Desktop, add this server configuration:
53 
54```json
55{
56 "mcpServers": {
57 "youtube-transcript": {
58 "command": "npx",
59 "args": ["-y", "@kimtaeyoon83/mcp-server-youtube-transcript"]
60 }
61 }
62}
63```
64 
65To enable the optional `analyze_video` tool, add your TwelveLabs API key:
66 
67```json
68{
69 "mcpServers": {
70 "youtube-transcript": {
71 "command": "npx",
72 "args": ["-y", "@kimtaeyoon83/mcp-server-youtube-transcript"],
73 "env": {
74 "TWELVELABS_API_KEY": "your-twelvelabs-api-key"
75 }
76 }
77 }
78}
79```
80 
81## Ins

Preview

kimtaeyoon83/mcp-server-youtube-transcriptkimtaeyoon83/mcp-server-youtube-transcript

[![MseeP.ai Security Assessment Badge](https://mseep.net/pr/kimtaeyoon83-mcp-server-youtube-transcript-badge.png)](https://mseep.ai/app/kimtaeyoon83-mcp-server-

# YouTube Transcript Server

[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/kimtaeyoon83/mcp-server-youtube-transcript)](https://archestra.ai/mcp-catalog/kimtaeyoon83__m

[![smithery badge](https://smithery.ai/badge/@kimtaeyoon83/mcp-server-youtube-transcript)](https://smithery.ai/server/@kimtaeyoon83/mcp-server-youtube-transcrip

Repokimtaeyoon83/mcp-server-youtube-transcript
TypeMCP Servers
CategoryBrowser & Automation
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. microsoft avatarplaywright-mcpPlaywright Tools for MCPMCP ServersJul 202626M36k
  2. cloudflare avatarplaywright-mcpPlaywright Tools for MCPMCP ServersApr 202626M250
  3. microsoft avatarPlaywright MCPBrowser automation for agents via accessibility snapshotsMCP Servers6 days ago25M35k
  4. d4vinci avatarscraplingWeb scraping with stealth HTTP, real browsers, and Cloudflare bypass. CSS selectors supported.MCP ServersJul 2026930k72k
  5. firecrawl avatarfirecrawl-mcp-serverMCP server for Firecrawl — search, scrape, and interact with the web.MCP ServersJul 2026480k7.1k
  6. nickclyde avatarduckduckgo-mcp-serverMCP Server for searching via DuckDuckGoMCP ServersJul 2026121k1.4k