Skip to main content
Glama
tanush-yadav

YouTube Transcript MCP Server

by tanush-yadav
README.md
# YouTube Transcript MCP Server

[![npm version](https://badge.fury.io/js/%40tanush-yadav%2Fyoutube-transcript-mcp.svg)](https://www.npmjs.com/package/@tanush-yadav/youtube-transcript-mcp)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Node.js Version](https://img.shields.io/node/v/%40tanush-yadav%2Fyoutube-transcript-mcp.svg)](https://nodejs.org)

A Model Context Protocol (MCP) server that enables Large Language Models (LLMs) to extract transcripts from YouTube videos. Built with the reliable `youtubei.js` library, this server provides seamless transcript extraction with support for timestamps, metadata, and file exports.

## ✨ Features

- πŸŽ₯ **Extract transcripts** from any YouTube video with captions
- ⏱️ **Timestamp support** - Get transcripts with or without timestamps
- πŸ“Š **Rich metadata** - Word count, duration, segment count, and more
- πŸ’Ύ **Export to files** - Save transcripts as text files
- πŸ”§ **Flexible input** - Accepts full URLs, short URLs, or just video IDs
- ⚑ **High reliability** - Uses YouTube's internal API via youtubei.js
- πŸš€ **No API key required** - Works out of the box
- πŸ›‘οΈ **Error handling** - Clear, actionable error messages

## πŸ“¦ Installation

### As an MCP Server for Claude Desktop

```bash
# Clone the repository
git clone https://github.com/tanush-yadav/youtube-transcript-mcp.git
cd youtube-transcript-mcp

# Install dependencies
npm install
```

### As an npm Package

```bash
npm install @tanush-yadav/youtube-transcript-mcp
```

Or using yarn:

```bash
yarn add @tanush-yadav/youtube-transcript-mcp
```

## πŸš€ Quick Start

### Configuration for Claude Desktop

Add the server to your Claude Desktop configuration:

**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
**Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
**Linux**: `~/.config/Claude/claude_desktop_config.json`

```json
{
  "mcpServers": {
    "youtube-transcript": {
      "command": "node",
      "args": ["/absolute/path/to/youtube-transcript-mcp/index.js"]
    }
  }
}
```

Or if installed globally via npm:

```json
{
  "mcpServers": {
    "youtube-transcript": {
      "command": "npx",
      "args": ["@tanush-yadav/youtube-transcript-mcp"]
    }
  }
}
```

## πŸ› οΈ Available Tools

### 1. `get_transcript`

Extract transcript from a YouTube video with optional timestamps.

**Parameters:**

- `url` (string, required): YouTube video URL or video ID
- `include_timestamps` (boolean, optional): Include timestamps in output (default: false)

**Example Request:**

```javascript
{
  "name": "get_transcript",
  "arguments": {
    "url": "https://youtube.com/watch?v=dQw4w9WgXcQ",
    "include_timestamps": true
  }
}
```

**Example Output with timestamps:**

```
[00:00] We're no strangers to love
[00:04] You know the rules and so do I
[00:08] A full commitment's what I'm thinking of
```

### 2. `get_transcript_with_metadata`

Extract transcript along with comprehensive metadata.

**Parameters:**

- `url` (string, required): YouTube video URL or video ID

**Example Response:**

```json
{
  "metadata": {
    "video_id": "dQw4w9WgXcQ",
    "video_url": "https://youtube.com/watch?v=dQw4w9WgXcQ",
    "word_count": 251,
    "segment_count": 42,
    "duration": "3:32",
    "duration_seconds": 212,
    "language": "en",
    "is_auto_generated": false
  },
  "transcript": "Never gonna give you up...",
  "full_transcript_length": 1234
}
```

### 3. `save_transcript`

Save transcript to text file(s) on the local filesystem.

**Parameters:**

- `url` (string, required): YouTube video URL or video ID
- `filename` (string, required): Base filename (without extension)
- `with_timestamps` (boolean, optional): Save version with timestamps (default: true)

**Example:**

```javascript
{
  "name": "save_transcript",
  "arguments": {
    "url": "https://youtu.be/dQw4w9WgXcQ",
    "filename": "rickroll_transcript",
    "with_timestamps": true
  }
}
```

Creates files:

- `rickroll_transcript_clean.txt` - Plain text transcript
- `rickroll_transcript_with_timestamps.txt` - Transcript with timestamps (if enabled)

## πŸ’» Programmatic Usage

### As an MCP Client

```javascript
import { Client } from '@modelcontextprotocol/sdk/client/index.js'
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'

// Initialize transport
const transport = new StdioClientTransport({
  command: 'node',
  args: ['/path/to/youtube-transcript-mcp/index.js'],
})

// Create client
const client = new Client({
  name: 'youtube-transcript-client',
  version: '1.0.0',
})

// Connect and use
await client.connect(transport)

// Get transcript with timestamps
const result = await client.callTool({
  name: 'get_transcript',
  arguments: {
    url: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
    include_timestamps: true,
  },
})

console.log(result.content[0].text)
```

### Direct Module Usage

```javascript
// Coming soon: Direct module import support
import { YouTubeTranscriptExtractor } from '@tanush-yadav/youtube-transcript-mcp'

const extractor = new YouTubeTranscriptExtractor()
const transcript = await extractor.getTranscript('dQw4w9WgXcQ')
console.log(transcript)
```

## 🌐 Supported URL Formats

The server accepts various YouTube URL formats:

- βœ… Standard: `https://www.youtube.com/watch?v=VIDEO_ID`
- βœ… Short: `https://youtu.be/VIDEO_ID`
- βœ… Embed: `https://www.youtube.com/embed/VIDEO_ID`
- βœ… Mobile: `https://m.youtube.com/watch?v=VIDEO_ID`
- βœ… Shorts: `https://www.youtube.com/shorts/VIDEO_ID`
- βœ… With timestamps: `https://youtube.com/watch?v=VIDEO_ID&t=123`
- βœ… With playlist: `https://youtube.com/watch?v=VIDEO_ID&list=PLAYLIST_ID`
- βœ… Just video ID: `dQw4w9WgXcQ`

## πŸ“ Usage Examples with Claude

Once configured, you can ask Claude:

```
"Get the transcript from https://www.youtube.com/watch?v=dQw4w9WgXcQ"

"Extract the YouTube transcript with timestamps from video ID abc123"

"Save the transcript from this video to a file: [URL]"

"Get detailed metadata and transcript from: [URL]"

"Summarize this YouTube video: [URL]" (Claude will fetch and summarize)
```

## πŸ”§ Development

### Running Tests

```bash
npm test
```

### Building from Source

```bash
git clone https://github.com/tanush-yadav/youtube-transcript-mcp.git
cd youtube-transcript-mcp
npm install
npm run build
```

### Development Mode

```bash
npm run dev
```

### Testing the MCP Server

Create a test file `test-client.js`:

```javascript
import { Client } from '@modelcontextprotocol/sdk/client/index.js'
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'

const transport = new StdioClientTransport({
  command: 'node',
  args: ['./index.js'],
})

const client = new Client({
  name: 'test-client',
  version: '1.0.0',
})

await client.connect(transport)

// List available tools
const tools = await client.listTools()
console.log('Available tools:', tools)

// Test transcript extraction
const result = await client.callTool({
  name: 'get_transcript',
  arguments: {
    url: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
  },
})

console.log('Transcript:', result.content[0].text)
await transport.close()
```

## πŸ› Troubleshooting

### Common Issues

1. **"No transcript available"**

   - βœ“ Ensure the video has captions/subtitles available
   - βœ“ Check if the video is public and not age-restricted
   - βœ“ Some live streams may not have transcripts available

2. **Connection errors**

   - βœ“ Verify your internet connection
   - βœ“ Check if YouTube is accessible in your region
   - βœ“ Ensure Node.js version is 18.0 or higher

3. **MCP server not found in Claude**

   - βœ“ Verify the path in your Claude configuration is absolute
   - βœ“ Ensure Node.js is properly installed and in PATH
   - βœ“ Restart Claude Desktop after configuration changes

4. **Permission errors when saving files**
   - βœ“ Ensure write permissions in the target directory
   - βœ“ Check disk space availability

### Debug Mode

Enable debug logging by setting the environment variable:

```bash
DEBUG=youtube-transcript-mcp node index.js
```

## πŸ“Š Performance

- Average transcript extraction time: 1-3 seconds
- Memory usage: ~50MB
- Supports videos up to 12+ hours in length
- Handles 1000+ segments efficiently

## 🀝 Contributing

Contributions are welcome! Please follow these steps:

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

### Development Guidelines

- Follow existing code style
- Add tests for new features
- Update documentation as needed
- Ensure all tests pass before submitting PR

## πŸ“„ License

MIT License - see [LICENSE](LICENSE) file for details

## πŸ™ Acknowledgments

- [youtubei.js](https://github.com/LuanRT/YouTube.js) - Excellent YouTube API implementation
- [Model Context Protocol](https://github.com/anthropics/mcp) - MCP SDK and specification
- [Anthropic](https://www.anthropic.com) - For creating Claude and the MCP protocol

## πŸ“ˆ Roadmap

- [ ] Support for multiple language transcripts
- [ ] Batch processing for multiple videos
- [ ] Transcript translation capabilities
- [ ] Export to SRT/VTT subtitle formats
- [ ] Caching for improved performance
- [ ] Support for playlist extraction
- [ ] Real-time transcript streaming
- [ ] Custom formatting options

## πŸ’¬ Support

For issues, questions, or suggestions:

- πŸ› [Open an issue](https://github.com/tanush-yadav/youtube-transcript-mcp/issues)
- πŸ’‘ [Start a discussion](https://github.com/tanush-yadav/youtube-transcript-mcp/discussions)
- πŸ“§ Contact: tanush@cintra.run

## πŸ“ Changelog

### [1.0.0] - 2024-01-03

- πŸŽ‰ Initial release
- ✨ Transcript extraction with youtubei.js
- ⏱️ Timestamp support
- πŸ“Š Metadata extraction
- πŸ’Ύ File saving capability
- πŸ”§ MCP protocol implementation

---

Made with ❀️ by the Open Source Community

**Star ⭐ this repo if you find it useful!**

TDQS

A3.5/5.0

Scored across 3 tools

Disambiguation3/5

The tools are mostly distinct: one returns raw transcript, another adds metadata, and the third saves to a file. However, get_transcript and get_transcript_with_metadata overlap heavily since the latter is a superset, which could cause an agent to pick the wrong one for a simple transcript request.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: get_transcript, get_transcript_with_metadata, save_transcript. The naming clearly indicates the action and target, with no mixed conventions or vague verbs.

Tool Count5/5

Three tools is well-scoped for a server dedicated to YouTube transcript extraction. Each tool serves a clear purposeβ€”basic retrieval, retrieval with metadata, and saving to fileβ€”without unnecessary bloat.

Completeness4/5

The core workflow of extracting and saving transcripts is covered. Minor gaps exist such as language selection, timestamped segments, or listing available transcript tracks, but these are extensions rather than fundamental missing pieces for the stated purpose.

Maintenance

ActivityInactive
ResponsivenessNo issues