video-analyzer
MCP server enabling video analysis via scene detection, audio transcription, visual description, and stylistic fingerprinting, with tools for full pipeline execution and storyboard generation.
README
Video Analyzer
Analyze videos and generate storyboard breakdowns. Extracts frames via scene detection, transcribes audio with Whisper, analyzes visuals with Claude Vision, and computes 8-field stylistic fingerprints.
Features
- Frame Extraction — Scene-detection-based keyframe selection (or fixed intervals)
- Audio Transcription — Timestamped transcription via OpenAI Whisper
- Visual Analysis — Per-frame descriptions using Claude Vision
- Stylistic Fingerprint v3 — 8-field deterministic classification (rendering class, world type, character strategy, narrative structure, visual abstraction, visual density, camera language, tonal positioning)
- Storyboard Output — Combined shot-by-shot breakdown as
.docxor.md
MCP Server
This project includes an MCP (Model Context Protocol) server so you can use video analysis directly from Claude Desktop or Claude Code.
Install via Claude Code
claude mcp add video-analyzer -s user -- uvx video-analyzer-mcp
Install via Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"video-analyzer": {
"command": "uvx",
"args": ["video-analyzer-mcp"],
"env": {
"ANTHROPIC_API_KEY": "your-key-here"
}
}
}
}
MCP Tools
| Tool | Description |
|---|---|
video_analyze |
Full pipeline: download, extract frames, transcribe, analyze, fingerprint, storyboard |
video_extract_frames |
Extract representative frames using scene detection or fixed intervals |
video_transcribe |
Transcribe audio with OpenAI Whisper |
video_fingerprint |
Generate 8-field Stylistic Fingerprint v3 classification |
video_check_deps |
Verify all required dependencies are installed |
Standalone Usage
pip install -r requirements.txt
python3 analyze_video.py "https://youtube.com/watch?v=..." --output-dir ./output
Prerequisites
- Python 3.10+
- FFmpeg —
brew install ffmpeg(macOS) orapt-get install ffmpeg(Linux) - ANTHROPIC_API_KEY — set as an environment variable
Stylistic Fingerprint Fields
- Rendering Class — Stylized 3D, Flat 2D, Minimalist Line Art, Textured 2D, Mixed Media, Photoreal
- World Type — Stylized Real-World, Abstract Concept Space, Data/Presentation Space, Fictional Metaphor Universe
- Character Strategy — None, Mascot-Led, Single Narrator, Single Protagonist Arc, Ensemble Cast
- Narrative Structure — Direct Explanation, Step-by-Step, Problem-Solution, Analogy, Myth-Busting, etc.
- Visual Abstraction Index — 1 (Photorealistic) to 5 (Maximum Abstraction)
- Visual Density — Minimal, Sparse, Moderate, High
- Camera/Editing Language — Cinematic, Social Vertical Punch, Presentation Deck, Static Slides, etc.
- Tonal Positioning — Institutional, Corporate Professional, Gen Z Social, Child-Friendly, Dark Editorial
License
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.