.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

…/jkawamoto/mcp-youtube-transcript
home/mcp-servers/jkawamoto/mcp-youtube-transcript
jkawamoto avatar

mcp-youtube-transcript

byjkawamoto· 1 MCP server

Installs

5.7k

Stars

460

Forks

70

Category

AI Agents & MCP

View on GitHub

TL;DR

This MCP server retrieves transcripts for given YouTube video URLs.

How to install mcp-youtube-transcript?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
README.md
1# YouTube Transcript MCP Server
2 
3[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
4[![Python Application](https://github.com/jkawamoto/mcp-youtube-transcript/actions/workflows/python-app.yaml/badge.svg)](https://github.com/jkawamoto/mcp-youtube-transcript/actions/workflows/python-app.yaml)
5[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
6[![GitHub License](https://img.shields.io/github/license/jkawamoto/mcp-youtube-transcript)](https://github.com/jkawamoto/mcp-youtube-transcript/blob/main/LICENSE)
7[![Dockerhub](https://img.shields.io/badge/Docker-mcp%2Fyoutube--transcript-blue.svg)](https://hub.docker.com/mcp/server/youtube_transcript)
8 
9 
10This MCP server retrieves transcripts for given YouTube video URLs.
11 
12## Tools
13This MCP server provides the following tools:
14 
15### `get_transcript`
16Fetches the transcript of a specified YouTube video.
17 
18#### Parameters
19- **url** *(string)*: The full URL of the YouTube video. This field is required.
20- **lang** *(string, optional)*: The desired language for the transcript. Defaults to `en` if not specified.
21- **next_cursor** *(string, optional)*: Cursor to retrieve the next page of the transcript.
22 
23### `get_timed_transcript`
24Fetches the transcript of a specified YouTube video with timestamps.
25 
26#### Parameters
27- **url** *(string)*: The full URL of the YouTube video. This field is required.
28- **lang** *(string, optional)*: The desired language for the transcript. Defaults to `en` if not specified.
29- **next_cursor** *(string, optional)*: Cursor to retrieve the next page of the transcript.
30 
31### `get_video_info`
32Fetches the metadata of a specified YouTube video.
33 
34#### Parameters
35- **url** *(string)*: The full URL of the YouTube video. This field is required.
36 
37### `get_available_languages`
38Retrieves the available languages for the video.
39 
40#### Parameters
41- **url** *(string)*: The full URL of the YouTube video. This field is required.
42 
43## Installation
44> [!NOTE]
45> You'll need [`uv`](https://docs.astral.sh/uv) installed on your system to use `uvx` command.
46 
47### For [goose](https://block.github.io/goose/)
48Please refer to this tutorial for detailed installation instructions:
49[YouTube Transcript Extension](https://block.github.io/goose/docs/mcp/youtube-transcript-mcp).
50 
51### For [Claude](https://claude.com/download)
52 
53Download the latest MCP bundle `mcp-youtube-transcript.mcpb` from
54the [Releases](https://github.com/jkawamoto/mcp-youtube-transcript/releases) page,
55then open the downloaded `.mcpb `file or drag it into the Claude Desktop's Settings window.
56 
57<details>
58<summary>Manually configuration</summary>
59 
60You can also manually configure this server for Claude Desktop.
61Edit the `claude_desktop_config.json` file by adding the following entry under
62`mcpServers`:
63 
64```json
65{
66 "mcpServers": {
67 "youtube-transcript": {
68 "command": "uvx",
69 "args": [
70 "--from",
71 "git+https://github.com/jkawamoto/mcp-youtube-transcript",
72 "mcp-youtube-transcript"
73 ]
74 }
75 }
76}
77```
78After editing, restart the application.
79 
80</details>
81 
82For more information,
83see: [Connect to local MCP servers - Model Context Protocol.](https://modelcontextprotocol.io/docs/develop/connect-local-servers).
84 
85### For [LM Studio](https://lmstudio.ai/)
86To configure this server for LM Studio, click the button below.
87 
88[![Add MCP Server youtube-transcript to LM Studio](https://files.lmstudio.ai/deeplink/mcp-install-light.svg)](https://lmstudio.ai/install-mcp?name=youtube-transcript&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyItLWZyb20iLCJnaXQraHR0cHM6Ly9naXRodWIuY29tL2prYXdhbW90by9tY3AteW91dHViZS10cmFuc2NyaXB0IiwibWNwLXlvdXR1YmUtdHJhbnNjcmlwdCJdfQ%3D%3D)
89 
90### Using Docker
91 
92A Docker image for this server is available on [Docker Hub](https://hub.docker.com/mcp/server/youtube_transcript/).
93Please refer to the Docker Hub page for detailed usage instr

Preview

jkawamoto/mcp-youtube-transcriptjkawamoto/mcp-youtube-transcript

# YouTube Transcript MCP Server

[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)

[![Python Application](https://github.com/jkawamoto/mcp-youtube-transcript/actions/workflows/python-app.yaml/badge.svg)](https://github.com/jkawamoto/mcp-youtub

[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)

Repojkawamoto/mcp-youtube-transcript
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPmcp-serverpython

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k