transcriptor-mcp
Transcriptor MCP is an MCP server that extracts video transcripts, subtitles, and metadata from 11 major platforms using yt-dlp, with Whisper fallback for audio transcription when subtitles are unavailable.
Get cleaned transcripts (
get_transcript): Fetch plain text transcripts from YouTube, Twitter/X, Instagram, TikTok, Twitch, Vimeo, Facebook, Bilibili, VK, Dailymotion, and Reddit โ with auto-discovery of language and subtitle type.Get raw subtitles (
get_raw_subtitles): Retrieve raw SRT/VTT/ASS/LRC subtitle files with full pagination support, specifying language, type (official or auto-generated), and chunk size.List subtitle languages (
get_available_subtitles): Discover available official and auto-generated subtitle languages for any supported video.Fetch video metadata (
get_video_info): Get extended info including title, description, channel, duration, upload date, view/like/comment counts, tags, categories, thumbnails, and live status.Get chapter markers (
get_video_chapters): Extract chapter start/end times and titles from a video.Batch playlist transcripts (
get_playlist_transcripts): Fetch cleaned transcripts for multiple videos from a playlist in one call, with item selection and limits.Search YouTube videos (
search_videos): Search via yt-dlp with filters for result count, pagination offset, upload date, and output in JSON or Markdown format.Whisper fallback: Automatically transcribes audio via local Whisper or the OpenAI Whisper API when native subtitles are unavailable.
Pagination: Large transcripts and subtitle files are paginated using
response_limitandnext_cursorparameters.Production features: Optional Redis caching, Prometheus metrics, authentication support, and Docker containerization.
Flexible deployment: Available over stdio or HTTP/SSE, with direct integration for Cursor, Claude Code, n8n, Smithery, and Glama.
Enables the extraction of video transcripts and metadata from the Bilibili platform.
Allows for retrieving video transcripts and metadata from Dailymotion videos.
Supports fetching transcripts and metadata for videos hosted on Facebook.
Provides capabilities to extract transcripts and metadata from Instagram video content.
Integrates with OpenAI's Whisper API to provide audio transcription fallback when native subtitles are unavailable.
Enables fetching of transcripts and metadata from TikTok videos.
Supports extracting transcripts and metadata from Twitch videos and streams.
Allows for retrieving video transcripts and metadata from Vimeo.
Provides tools to fetch video transcripts, raw subtitles, and detailed metadata including chapters, tags, and thumbnails.
๐ฌ Now your AI assistant can watch videos!
Connect one server. Then ask Claude, ChatGPT or etc about a video: the transcript, the chapters, the metadata, or a single frame. It works with 11 platforms, not only YouTube.
Connect ยท What to ask ยท Widgets ยท Platforms ยท Self-host
โก Connect in 30 seconds
The hosted endpoint is:
https://gateway.mcpal.io/mcp/transcriptor๐ฑ๏ธ One click
โจ๏ธ One command, for Claude Code
claude mcp add --transport http transcriptor https://gateway.mcpal.io/mcp/transcriptorThen run /mcp and approve the sign-in in the browser. After this, claude mcp list shows โ Connected.
๐งญ No terminal
Client | What to do |
Claude (web and desktop) | Open Settings โ Customize โ Connectors. Select Add โ Add custom connector, paste |
ChatGPT | Open Settings โ Security and login and turn on Developer mode. Then open Plugins, select +, and paste |
Codex | Add the block below to |
[mcp_servers.transcriptor]
url = "https://gateway.mcpal.io/mcp/transcriptor"
auth = "oauth"Note: ChatGPT developer mode is available on the web, for paid plans. Some releases show this control as Settings โ Apps & Connectors โ Advanced.
Note:
codex mcp addregisters stdio servers only, so a hosted server goes intoconfig.toml. See the Codex MCP docs.
๐งฉ Any other MCP client
If your client is not in the list above, add the server with this configuration:
{
"mcpServers": {
"transcriptor": {
"url": "https://gateway.mcpal.io/mcp/transcriptor"
}
}
}If you want to run the server yourself, read Self-host. The tools are the same and you need no account.
Related MCP server: YouTube MCP
๐งฐ What you can ask
Ask for this | Tool |
"Summarize this video for me" |
|
"Give me the subtitles as an SRT file" |
|
"Is there a German track for this video?" |
|
"Who published this and how many views?" |
|
"Go to the part about pricing" |
|
"Show me the screen at 4:12" |
|
"Get transcripts for the first 5 videos in this playlist" |
|
"Find recent videos about X" |
|
Long transcripts come in parts. Each response gives a cursor for the next part, so no text is lost.
Each tool that takes a video accepts url. This is a link from a supported platform or a plain YouTube ID. Each tool returns content (text for the chat) and structuredContent (typed JSON for your code).
get_transcript
Clean plain text, without timestamps, HTML, or speaker names. The tool finds the type and the language for you.
Response: videoId, type, lang, text, is_truncated, total_length, start_offset, end_offset. When more text is available, the response also has next_cursor.
get_raw_subtitles
Raw SRT or VTT content, in parts.
Input:
typeโofficialorautolangโ a language coderesponse_limitโ default50000, minimum1000, maximum200000next_cursorโ the cursor of the previous response
Response: the fields of get_transcript, plus format (srt or vtt) and content.
get_available_subtitles
Response: official and auto. Each field is a sorted list of language codes. Use this tool first, then give type and lang to the tools above.
get_video_info
Extended metadata from yt-dlp:
identity โ
videoId,title,description,webpageUrlauthor โ
uploader,uploaderId,channel,channelId,channelUrlnumbers โ
duration,uploadDate,viewCount,likeCount,commentCountclassification โ
tags,categories,liveStatus,isLive,wasLive,availabilityimages โ
thumbnailandthumbnails
get_video_chapters
Response: chapters. Each item has startTime, endTime, and title. When the video has no chapters, the list is empty.
get_video_frame
Input:
timecodeโ"MM:SS"or"HH:MM:SS.mmm"secondsโ an alternative totimecode. Give one of the two, not bothformatโjpeg(default) orpngwidthโ default1280, maximum1920, never larger than the sourcequalityโ2to31, for jpeg only
Response: an image block, plus timestampSeconds, timestamp, mimeType, sizeBytes, and width. This tool needs ffmpeg. The Docker image includes it.
get_playlist_transcripts
Input:
urlโ a playlist URL, or a watch URL withlist=type,lang,formatโ the same asget_raw_subtitlesplaylistItemsโ a yt-dlp-Ivalue such as1:5,1,3,7, or-1maxItemsโ the maximum number of videos
Response: results. Each item has videoId and text.
search_videos
Input:
queryโ the search textlimitโ default 10, maximum 50offsetโ the number of results to skipuploadDateFilterโhour,today,week,month, oryearresponse_formatโjson(default) ormarkdown
Response: results. Each item has videoId, title, url, duration, uploader, viewCount, and thumbnail.
๐บ Widgets
Four tools have an interactive interface: get_transcript, get_video_info, get_video_frame, and search_videos. Clients that support MCP Apps and the ChatGPT Apps SDK show this interface in the chat. Other clients get the same data as text and JSON.
๐ Platforms
YouTube ยท Twitter/X ยท Instagram ยท TikTok ยท Twitch ยท Vimeo ยท Facebook ยท Bilibili ยท VK ยท Dailymotion ยท Reddit
Each tool that takes a video accepts a link from these 11 platforms. The tool search_videos works with YouTube only, through yt-dlp ytsearch.
The server does not download video or audio files for you. It returns text, metadata, and single frames.
๐ณ Self-host
The tools are the same as on the hosted endpoint. You need no account.
Run the server with Docker. The image serves Streamable HTTP on port 4200:
docker run --rm -p 4200:4200 artsamsonov/transcriptor-mcp:latestThen point your client at http://localhost:4200/mcp.
For stdio, give the image an explicit command:
docker run --rm -i artsamsonov/transcriptor-mcp:latest npm run start:mcp{
"mcpServers": {
"transcriptor": {
"command": "docker",
"args": ["run", "--rm", "-i", "artsamsonov/transcriptor-mcp:latest", "npm", "run", "start:mcp"]
}
}
}The server starts with no environment variables. Each variable below is optional.
Variable | Default | Function |
|
| The HTTP listener |
| โ | A Netscape cookies file for videos that need an account. See cookies.example.txt |
|
| Set |
|
| Set |
| โ | Timeouts, proxy, and JS runtimes. See .env.example |
The same port serves GET /health and GET /metrics. The metrics are in Prometheus format and include the mcp_* counters.
Transport. The server accepts POST /mcp only. GET and DELETE return 405. The server is stateless and sends no Mcp-Session-Id.
The Node process does not check bearer tokens. Put a reverse proxy or a gateway in front of it for authentication and TLS. The hosted endpoint works this way.
REST API. A second image gives the same extraction over plain HTTP:
docker run --rm -p 3000:3000 artsamsonov/transcriptor-mcp-api:latestThe Swagger interface is at http://localhost:3000/docs. For a full stack with the API and the MCP server, read docker-compose.example.yml.
Development.
npm ci
npm run build
npm run dev:mcp # stdio, hot reload
npm run dev:mcp:http # Streamable HTTP, hot reload
npm testYou need Node.js 20 or later, and yt-dlp in your PATH. Frame capture also needs ffmpeg. Other scripts: lint, type-check, format, test:coverage, test:e2e:api, and test:e2e:mcp.
Releases. The version comes from package.json at runtime, through src/version.ts. Change this version, move the [Unreleased] entries of the changelog into the new version, then push a v* tag. CI builds both images and publishes the MCP Registry entry from server.json.
Layout. src/mcp.ts (stdio entry), src/mcp-http.ts (Streamable HTTP), src/mcp-core.ts (tools, prompts, widgets), src/youtube.ts (yt-dlp), src/whisper.ts, src/cache.ts, src/index.ts (REST API), load/ (k6), and src/e2e/ (Docker smoke tests).
๐ค Contributing
Pull requests are welcome. Fork the repository, make a branch, and make sure that npm test and npm run lint pass. Then open a pull request.
โ๏ธ Legal
The hosted endpoint at gateway.mcpal.io is governed by the Terms of Service and the Privacy Policy.
A server you host yourself is not covered by those documents. It is governed by the MIT License only.
๐ License
MIT ยฉ 2026 samson-art. Read LICENSE.
๐ฌ Support
Issues ยท GitHub profile ยท LinkedIn
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceA Model Context Protocol server that enables retrieval of transcripts from YouTube videos. This server provides direct access to video transcripts and subtitles through a simple interface, making it ideal for content analysis and processing.133135MIT
- FlicenseAqualityDmaintenanceA Model Context Protocol server that enables Claude to interact with YouTube data and functionality through the Claude Desktop application.110
- AlicenseAqualityAmaintenanceHigh-efficiency YouTube MCP server: Get token-optimized, structured data for your LLMs using the YouTube Data API v3.957228MIT
- AlicenseNot gradedqualityCmaintenanceEnables searching for songs on YouTube and automatically playing them in a web browser using the official YouTube Data API v3. It supports cross-platform execution on Windows, macOS, and Linux with built-in input validation.MIT
Related MCP Connectors
MCP server for Clipkit โ gives AI agents a video toolbox via the Clipkit schema.
MCP server for Hailuo (MiniMax) AI video generation
Any social-video URL โ transcript, metadata, frames, OCR, summary, search, Q&A. MCP server + x402.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/samson-art/transcriptor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server