Video Watcher MCP Server
MCP server exposing claude-video functionality for claude.ai web UI via HTTP+SSE, enabling video watching and analysis from claude.ai.
README
Video Watcher MCP Server
MCP server exposing claude-video functionality for claude.ai web UI via HTTP+SSE.
Wraps the claude-video plugin and serves it over the web so you can watch and analyze videos from claude.ai.
Deployment to Render (Free Tier)
Step 1: Create a Render Account
Go to render.com and sign up. Free tier is fine.
Step 2: Create a GitHub Repository
Push this project to a GitHub repo. Render will auto-deploy from GitHub.
git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/YOUR_USERNAME/video-watcher-mcp.git
git branch -M main
git push -u origin main
Step 3: Deploy to Render
- Go to dashboard.render.com
- Click New + → Web Service
- Connect your GitHub repo (
video-watcher-mcp) - Set these values:
- Name:
video-watcher-mcp - Runtime: Docker
- Region: Choose closest to you
- Plan: Free (it's free, stays cold until you use it)
- Name:
- Under Environment, add:
GROQ_API_KEY= your Groq API key (get it at console.groq.com)OPENAI_API_KEY= (optional, fallback)
- Click Deploy
Render will build the Docker image and deploy. Takes ~5 minutes. You'll get a URL like https://video-watcher-mcp.onrender.com.
Step 4: Register with claude.ai
- Go to claude.ai
- Open settings (bottom left)
- Find MCP or Connected Services
- Click Add MCP
- Fill in:
- Name: Video Watcher
- Transport: HTTP
- URL:
https://video-watcher-mcp.onrender.com
- Save
Step 5: Test
In claude.ai, ask:
Watch https://www.youtube.com/watch?v=... and tell me what happens
Or use the watch_video tool directly if exposed in the UI.
Local Development
# Install dependencies
pip install -r requirements.txt
# Run server
python server.py
# Starts on http://localhost:8000
# Check health
curl http://localhost:8000/health
Notes
- Free tier sleeps after 15 min of inactivity. First request takes 10-15 seconds to wake up. Fine for occasional use (once every few days).
- No bandwidth limits on free tier.
- API keys: Groq is cheaper/faster. OpenAI is fallback if you have it.
- Video limits: See claude-video docs — recommended under 10 min, hard cap 100 frames.
- No persistence: Frames/transcripts live in
/tmpand are cleaned up after response.
Troubleshooting
"Connection refused" after deploy:
- Free tier may still be spinning up. Wait 30 seconds and retry.
- Check Render dashboard for build logs.
"No transcript available":
- Video has no captions AND Groq/OpenAI API key is missing or invalid.
- Add API key to Render environment vars.
Server crashes:
- Check Render logs: Dashboard → your service → Logs tab.
Architecture
claude.ai (web UI)
↓ HTTPS
MCP Server (running on Render)
↓
Calls scripts/watch.py
↓
Returns frames + transcript
The server is stateless. Each request downloads, processes, and cleans up independently.
License
Same as claude-video (MIT).
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.
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.
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.
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.