by nabid-pf
An MCP (Model Context Protocol) server that enables Claude to fetch and summarize YouTube videos by extracting titles, descriptions, and transcripts.
YouTube Video Summarizer MCP is a Model Context Protocol (MCP) server designed to work with Claude Desktop. It allows Claude to access and summarize YouTube videos by extracting their titles, descriptions, and transcripts.
To use this project, you need to integrate the MCP server with Claude Desktop. This involves adding a specific configuration to your claude_desktop_config.json
file. Once integrated, you can use natural language commands within Claude to request video summaries, such as "Can you summarize this YouTube video for me?" followed by the video URL.
For developers, the project can be built from source by cloning the repository, installing dependencies with npm install
, and building the project with npm run build
. You can then start the inspector using npx @modelcontextprotocol/inspector node dist/index.js
.
youtube-caption-extractor
to get and process video captions.get-video-info-for-summary-from-url
command to get basic video information.Q: What are the prerequisites for running YouTube Video Summarizer MCP? A: You need Node.js (v18 or higher) installed.
Q: How does YouTube Video Summarizer MCP work?
A: It uses youtube-caption-extractor
to extract video captions/transcripts and the Model Context Protocol (MCP) to communicate with Claude.
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
Please log in to share your review and rating for this MCP.