Video Watcher MCP Server

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.

Category
Visit Server

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

  1. Go to dashboard.render.com
  2. Click New +Web Service
  3. Connect your GitHub repo (video-watcher-mcp)
  4. 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)
  5. Under Environment, add:
    • GROQ_API_KEY = your Groq API key (get it at console.groq.com)
    • OPENAI_API_KEY = (optional, fallback)
  6. 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

  1. Go to claude.ai
  2. Open settings (bottom left)
  3. Find MCP or Connected Services
  4. Click Add MCP
  5. Fill in:
    • Name: Video Watcher
    • Transport: HTTP
    • URL: https://video-watcher-mcp.onrender.com
  6. 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 /tmp and 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

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.

Official
Featured
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured