video-watcher-mcp
An MCP server that lets Claude Desktop watch videos from YouTube, Instagram, Facebook, or direct URLs, extracting transcripts and key frames to summarize and answer questions about video content.
README
video-watcher MCP server
An MCP server that lets Claude Desktop "watch" videos from YouTube, Instagram, Facebook, or a direct video URL (mp4/webm/etc), and answer questions about them.
What it does
For any supported URL, the server:
- Downloads the video with
yt-dlp(works for YouTube, Instagram, Facebook, and hundreds of other sites, plus falls back to a raw HTTP download for plain file URLs). - Extracts a transcript — YouTube captions via
youtube-transcript-apiif available, otherwise audio transcription viafaster-whisper. - Extracts 5 key frames (sampled across the video's timeline) as base64 JPEGs using OpenCV.
Results are cached in memory per URL for the life of the process, so calling multiple tools on the same video only downloads/transcribes it once.
Tools
watch_video(url)— full analysis: title, duration, transcript, frames.summarize_video(url)— ~200-word summary + bullet list of main points.answer_about_video(url, question)— transcript + frames so Claude can answer a specific question about the video.
Setup
cd D:\Projects\video-mcp-server
pip install -r requirements.txt
You'll also need ffmpeg on your PATH (required by both yt-dlp for
muxing and faster-whisper for audio decoding). On Windows, install via
winget install ffmpeg or download from https://ffmpeg.org and add it to PATH.
Test the server standalone first:
python video_mcp_server.py
It should sit waiting on stdio (no output = good; it logs to stderr).
Connect to Claude Desktop
Edit %APPDATA%\Claude\claude_desktop_config.json (create it if it doesn't
exist) and merge in:
{
"mcpServers": {
"video-watcher": {
"command": "python",
"args": ["D:\\Projects\\video-mcp-server\\video_mcp_server.py"]
}
}
}
Adjust the path if you cloned this elsewhere. If python isn't on PATH inside
Claude Desktop's environment, use the full interpreter path instead, e.g.
"C:\\Users\\<you>\\AppData\\Local\\Programs\\Python\\Python311\\python.exe".
Fully quit and reopen Claude Desktop after editing the config (closing the window is not enough on Windows either — use the system tray icon to Quit).
Testing it
Try these once connected:
watch_video("https://www.youtube.com/watch?v=dQw4w9WgXcQ")summarize_video("https://www.youtube.com/shorts/<some-short-id>")answer_about_video("https://www.instagram.com/reel/<reel-id>/", "What product is being promoted?")
Ask Claude directly, e.g.: "Watch this video and summarize it: <url>"
Notes & limitations
- Instagram: public posts/reels work via
yt-dlp. Private accounts or posts requiring login will fail with a clear error — this server does not store or use Instagram credentials.instagrapiis listed as an optional dependency for future extension but is not required by the current code path. - Facebook: public videos only; the same login-wall limitation applies.
- Whisper fallback: the first call that needs transcription will download
the
baseWhisper model (~150MB) on first use. - Rate limits: platforms may throttle repeated requests; the server surfaces a clear "rate limited, try again later" error rather than hanging.
- Storage: downloaded videos are written to a temp cache directory
(
%TEMP%\video_mcp_cache) and are not automatically cleaned up — clear it periodically if disk space matters.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.