New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

ytranscript-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ytranscript-mcp

MCP server for YouTube transcripts. Works from any cloud, no proxies. Transcribes videos without captions. Built on the yTranscript API.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

ytranscript-mcp

An MCP server that gives Claude, Cursor, VS Code, and other AI tools the transcript of any YouTube video.

  • Works from anywhere. Runs fine on AWS, Lambda, Vercel, n8n Cloud, and other cloud hosts. There are no proxies to buy and no IP bans to work around. YouTube blocks most cloud IPs for transcript requests; the yTranscript API handles that for you.
  • Handles videos without captions. If a video has no captions, it's transcribed with AI speech-to-text.
  • Returns the language actually spoken by default, including on auto-dubbed videos. Pass lang to pick a specific caption track.
  • Keeps long videos manageable. Choose plain text or timestamped lines, and cap the length so a two-hour video doesn't flood the model's context.

Setup

  • Get a free API key at ytranscript.com/developers. The free plan includes 50 units a month, no card required.
  • Add the server to your client using one of the configs below.

Claude Code

claude mcp add ytranscript -e YTRANSCRIPT_API_KEY=yk_live_your_key -- npx -y ytranscript-mcp

Claude Desktop

Add this to claude_desktop_config.json. Open it from Settings → Developer → Edit Config.

{
  "mcpServers": {
    "ytranscript": {
      "command": "npx",
      "args": ["-y", "ytranscript-mcp"],
      "env": { "YTRANSCRIPT_API_KEY": "yk_live_your_key" }
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json, or to .cursor/mcp.json in a project:

{
  "mcpServers": {
    "ytranscript": {
      "command": "npx",
      "args": ["-y", "ytranscript-mcp"],
      "env": { "YTRANSCRIPT_API_KEY": "yk_live_your_key" }
    }
  }
}

VS Code

Add this to .vscode/mcp.json:

{
  "servers": {
    "ytranscript": {
      "command": "npx",
      "args": ["-y", "ytranscript-mcp"],
      "env": { "YTRANSCRIPT_API_KEY": "yk_live_your_key" }
    }
  }
}

Any other MCP client that runs stdio servers works the same way: run npx -y ytranscript-mcp with YTRANSCRIPT_API_KEY set.

Tool: get_transcript

ArgumentRequiredDescription
videoyesA YouTube URL (watch, youtu.be, shorts, embed) or an 11-character video ID
langnoLanguage code of the caption track to fetch, such as en or es. Omit it to get the video's original language
formatnotext (default) returns plain text. timestamped returns one line per segment with [m:ss] times
max_charactersnoCut the transcript at about this many characters. The response says how much was left out

Things to ask your assistant:

  • "Summarize this video: https://youtu.be/..."
  • "What does the speaker say about pricing, and at what timestamps?"
  • "Pull the transcript of this Spanish video and translate it to English."

Every response ends with the units used and your monthly total, so you can keep an eye on your quota.

Pricing

A transcript from captions costs 1 unit. A video without captions, transcribed with AI, costs 15 units. Failed requests are free.

PlanPriceUnits per month
Free$050
Starter$9/mo1,000
Developer$29/mo10,000
Scale$79/mo50,000

See ytranscript.com/developers for details.

  • ytranscript-api is the JavaScript/TypeScript client this server is built on.

License

MIT

Keywords

mcp

FAQs

Package last updated on 24 Sep 2026

Related posts