YouTube transcripts, search, channels, playlists and bulk transcript jobs for AI agents. 14 tools.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Let your AI agent read YouTube.
Transcripts in five formats, native video and channel search, channel and playlist listings,
and background jobs that deliver up to 4,000 transcripts at a time. 14 tools behind one hosted
endpoint. Nothing runs on your machine.
Why Β· Quick start Β· Tools Β· Install Β· Recipes Β· Pricing Β· Errors
Everyone who works with an agent has run this exchange at least once.
The transcript is precisely the thing the agent cannot get on its own. With this server connected, the same message simply resolves.
Reading one video is rarely where the job ends. Here is how the three ways of getting YouTube data into an agent actually compare.
| This server | Local yt-dlp / scraper MCP | Google YouTube Data API | |
|---|---|---|---|
| Transcripts | β any public video, 5 formats | β οΈ blocked on datacenter IPs, breaks when YouTube changes markup | β not served at all |
| Setup | β a URL and an API key | β local install, binaries to keep alive | β Cloud project, OAuth consent screens |
| YouTube search | β native, 1 credit per page | β | β οΈ 100 quota units per search |
| Channels & playlists | β 100 videos/page, or 500 bare IDs | β one video at a time | β οΈ quota-metered per item |
| Bulk transcripts | β 4,000 per background job | β | β |
| RAG-ready chunking | β 20-5,000 chars, word-level timestamps | β | β |
| When YouTube changes | β fixed server-side, nothing to update | β you patch and redeploy | β |
| Failed calls | β credits refund themselves | β your retry logic | β οΈ quota spent anyway |
1. Get an API key. Sign up at transcriptout.com and create a key
in the dashboard. New accounts receive 100 free credits and
no card is asked. Keys start with sk_ and are shown once.
2. Point your client at the server. It speaks streamable HTTP and authenticates with one Bearer header.
One-click buttons for Cursor and VS Code sit at the top of this page. Exact snippets for the rest live under Install in your client.
3. Paste a link.
The agent picks get_transcript on its own, reads the timed text and answers from it. Every
response carries an X-Credits-Remaining header, so the budget stays in view the whole session.
All 14 tools are exposed automatically once you connect. Most calls cost 1 credit. Credits are refunded automatically when a call fails before reaching YouTube (validation errors, rate limits, our own capacity), so you pay for answers, not for failures. A definitive "this video has no captions" is an answer and is billed like one.
get_transcript Β· 1 creditFetch the transcript of any YouTube video. format=text (default) returns plain readable text,
cheapest for a model to reason over, and format=json returns timed segments.
| Parameter | Type | Default | Description |
|---|---|---|---|
video | string | required | YouTube URL (full or short) or 11-char video ID |
lang | string | "en" | Language code of the track (en, de, ...) |
format | string | "text" | "text" (plain text), "json" (segments with start/duration in seconds), "srt"/"vtt" (subtitle file body), "srv3" (raw YouTube XML) |
kind | string | auto-detect | "manual" or "auto". Left out, a manual track wins and auto is the fallback |
segment | integer | see below | Max characters per segment. 500-1500 makes RAG-ready chunks |
video_metadata | boolean | false | Add title, channel, duration and views in the SAME call, same 1 credit |
Left out, segment cuts auto-generated tracks into ~180-character segments and returns manual
tracks exactly as their author broke them. Pass it whenever you need one size regardless of which
track answers.
Example output (format=json):
srtandvttcome back as complete subtitle file bodies, ready to be written to disk by the agent.srv3is the raw source XML and does not combine withsegment.
get_video_info Β· 1 creditMetadata for one video (title, channel, duration, views, thumbnails) plus the list of available transcript languages, WITHOUT downloading the subtitles.
| Parameter | Type | Default | Description |
|---|---|---|---|
id | string | required | YouTube video ID or URL |
Credit hygiene: if you are going to fetch the transcript anyway, call
get_transcriptwithvideo_metadata=trueinstead. It returns both for one credit where these are two calls and two.
search_youtube Β· 1 credit/pageSearch YouTube for videos or channels. Paginate with next_page_token. has_more tells you
whether another page exists.
| Parameter | Type | Default | Description |
|---|---|---|---|
q | string | required* | Search query (*unless paginating) |
type | string | "video" | "video" or "channel" |
limit | integer | 20 | Results per page, 1-50 |
next_page_token | string | Token from a previous result |
list_channel_videos Β· 1 credit/pageList videos from a channel's Videos tab, newest first. Accepts an @handle, a channel name, a
UC... channel ID or a channel URL.
| Parameter | Type | Default | Description |
|---|---|---|---|
name | string | required* | @handle, channel name, UC... ID or URL |
limit | integer | 100 | Page size, up to 500 with ids_only |
ids_only | boolean | false | Return just video_ids[], up to 500 per page |
next_page_token | string | Token from a previous result |
ids_only=trueis the cheap way to feedsubmit_transcripts_job.
search_channel_videos Β· 1 credit/pageSearch inside one channel using YouTube's native relevance search. A result whose title lacks the query word is normal. Results are ranked by relevance, not by substring.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/youtube-transcript-search-mcp-server)<a href="https://allmcps.com/mcp/youtube-transcript-search-mcp-server"><img src="https://allmcps.com/api/badge/youtube-transcript-search-mcp-server?style=directory" alt="YouTube Transcript & Search MCP Server on AllMCPs" /></a>