An MCP (Model Context Protocol) server that enables Claude to fetch and summarize YouTube videos by extracting titles, descriptions, and transcripts.
To add the MCP server to Claude Desktop:
{
"mcpServers": {
"youtube-video-summarizer": {
"command": "npx",
"args": ["-y", "youtube-video-summarizer-mcp"]
}
}
}
When integrated with Claude, the following commands become available:
get-video-info-for-summary-from-url
: Get basic information about a YouTube videoOnce integrated with Claude Desktop, you can use natural language to request video summaries:
# Clone the repository
git clone https://github.com/yourusername/youtube-video-summarizer-mcp.git
cd youtube-video-summarizer-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Start the inspector
npx @modelcontextprotocol/inspector node dist/index.js
This project uses:
youtube-caption-extractor
to extract video captions/transcriptsMIT