Video Perception
You have access to video understanding tools via the claude-video-vision MCP server.
Available Tools
video_analyze — Analyze video structure with ffmpeg filters (scene changes, silence, motion, etc.). Use this BEFORE extracting frames to plan your strategy.
video_watch — Extract frames + process audio from a video. Supports variable FPS/resolution per segment.
video_detail — Drill into specific segments. Separates extraction from viewing — extract many frames, view few at a time.
video_info — Get video metadata without processing.
video_configure — Change settings (backend, resolution, enable_index, etc.).
video_setup — Check/install dependencies.
Workflow
IMPORTANT: You MUST follow these steps in order. Do NOT skip step 2.
Always start with video_info to get duration, resolution, and audio presence.
If the user gives a YouTube URL, pass the URL directly as path.
The MCP server downloads it with yt-dlp, prefers YouTube subtitles/auto-captions
for transcription, and falls back to the configured audio backend only when
captions are missing, empty, or suspiciously incomplete.
REQUIRED for videos > 30s: Call video_analyze BEFORE extracting any frames.
This is NOT optional — it gives you structural data to make smart extraction decisions.
Select filters relevant to the user's question:
| User intent |
Filters to select |
| "What happens in this video?" |
scene_changes, silence, transcription |
| "Find the scene transitions" |
scene_changes, black_intervals |
| "Are there frozen/stuck parts?" |
freeze, blur |
| "Is this a talking head or action?" |
motion |
| "When does the music start?" |
silence, loudness |
| "Analyze the lighting" |
exposure |
| "Summarize this lecture" |
transcription, scene_changes, silence |
| General / unclear intent |
scene_changes, silence, transcription |
Always include transcription: true when the video has audio — the transcription
tells you WHERE to look visually.
Use the analysis results and transcription to plan your frame extraction strategy:
- Low FPS (0.1-0.5) for static or predictable segments
- Higher FPS (1-3) only around scene changes, motion peaks, or moments
referenced in speech ("look at this", "as you can see", "let me show you")
- Never exceed the minimum FPS needed for the task
- Prefer fewer segments at lower FPS — you can always drill deeper
Call video_watch to extract frames:
- For short videos (< 2 minutes): Use
fps: "auto" without view_sample — short videos need full coverage to avoid missing brief moments. The auto FPS already adapts to duration.
- For long videos (> 2 minutes): Use
segments based on analysis data with variable FPS, and view_sample to limit initial frame count. You can always drill deeper with video_detail.
Use video_detail to drill into specific moments:
- Start with 3-5 second windows around points of interest
- Use
view_sample: 3 to preview (first, middle, last frame)
- Then request specific timestamps with
view if you need more detail
- Expand the window only if the initial view is insufficient
- Treat frame viewing like a binary search — narrow down to what matters
- Never view all extracted frames at once
When the user asks follow-up questions about the same video, consult
the manifest already in your context. Do not re-extract frames you
already have at the same resolution. Do not re-request frames you
already have in context.
Parameter Guide
fps: "auto" for general overview. Use the video's original fps (from video_info) for frame-by-frame detail. Use 5-10 for analyzing specific short moments. Use 0.1-0.5 for long videos.
resolution: 256-512 for quick scans. 512-768 for normal analysis. 1024+ when reading on-screen text or fine details.
segments: Use when you have analysis data. Each segment can have its own fps and resolution. Overrides global fps/start_time/end_time.
view_sample: Returns N evenly spaced frames from the extracted set. Use this to avoid flooding context with too many images.
skip_audio: Set to true when you only need visual analysis.
YouTube URLs: Pass supported YouTube URLs directly as path. Treat
transcription_source: "youtube_subtitles" as stronger than
youtube_auto_captions; auto-captions can still have recognition errors.
Working with Results
You receive:
- Manifest (when enable_index is on) — index of all cached frames by resolution and timestamp. Use this to avoid redundant requests.
- Frames as images — look at them to understand what's happening visually
- Audio transcription with timestamps — read the speech content
- Audio tags — non-speech events (music, sounds, etc.)
- Analysis data — scene changes, silence intervals, motion levels, etc.
Combine all sources to form a complete understanding. Use analysis + transcription to guide where you look visually. The analysis tells you WHEN things happen; the frames tell you WHAT happens.
1---2name: video-perception3description: Use when the user mentions a video file (.mp4, .mov, .avi, .mkv, .webm), a YouTube URL, asks to watch/analyze/review a video, or references video content in conversation4---56# Video Perception78You have access to video understanding tools via the claude-video-vision MCP server.910## Available Tools1112- `video_analyze` — Analyze video structure with ffmpeg filters (scene changes, silence, motion, etc.). Use this BEFORE extracting frames to plan your strategy.13- `video_watch` — Extract frames + process audio from a video. Supports variable FPS/resolution per segment.14- `video_detail` — Drill into specific segments. Separates extraction from viewing — extract many frames, view few at a time.15- `video_info` — Get video metadata without processing.16- `video_configure` — Change settings (backend, resolution, enable_index, etc.).17- `video_setup` — Check/install dependencies.1819## Workflow2021**IMPORTANT: You MUST follow these steps in order. Do NOT skip step 2.**22231. Always start with `video_info` to get duration, resolution, and audio presence.24 If the user gives a YouTube URL, pass the URL directly as `path`.25 The MCP server downloads it with `yt-dlp`, prefers YouTube subtitles/auto-captions26 for transcription, and falls back to the configured audio backend only when27 captions are missing, empty, or suspiciously incomplete.28292. **REQUIRED for videos > 30s:** Call `video_analyze` BEFORE extracting any frames.30 This is NOT optional — it gives you structural data to make smart extraction decisions.31 Select filters relevant to the user's question:3233 | User intent | Filters to select |34 |---|---|35 | "What happens in this video?" | scene_changes, silence, transcription |36 | "Find the scene transitions" | scene_changes, black_intervals |37 | "Are there frozen/stuck parts?" | freeze, blur |38 | "Is this a talking head or action?" | motion |39 | "When does the music start?" | silence, loudness |40 | "Analyze the lighting" | exposure |41 | "Summarize this lecture" | transcription, scene_changes, silence |42 | General / unclear intent | scene_changes, silence, transcription |4344 Always include `transcription: true` when the video has audio — the transcription45 tells you WHERE to look visually.46473. Use the analysis results and transcription to plan your frame extraction strategy:48 - Low FPS (0.1-0.5) for static or predictable segments49 - Higher FPS (1-3) only around scene changes, motion peaks, or moments50 referenced in speech ("look at this", "as you can see", "let me show you")51 - Never exceed the minimum FPS needed for the task52 - Prefer fewer segments at lower FPS — you can always drill deeper53544. Call `video_watch` to extract frames:55 - For **short videos (< 2 minutes):** Use `fps: "auto"` without `view_sample` — short videos need full coverage to avoid missing brief moments. The auto FPS already adapts to duration.56 - For **long videos (> 2 minutes):** Use `segments` based on analysis data with variable FPS, and `view_sample` to limit initial frame count. You can always drill deeper with `video_detail`.57585. Use `video_detail` to drill into specific moments:59 - Start with 3-5 second windows around points of interest60 - Use `view_sample: 3` to preview (first, middle, last frame)61 - Then request specific timestamps with `view` if you need more detail62 - Expand the window only if the initial view is insufficient63 - Treat frame viewing like a binary search — narrow down to what matters64 - Never view all extracted frames at once65666. When the user asks follow-up questions about the same video, consult67 the manifest already in your context. Do not re-extract frames you68 already have at the same resolution. Do not re-request frames you69 already have in context.7071## Parameter Guide7273**fps:** `"auto"` for general overview. Use the video's original fps (from `video_info`) for frame-by-frame detail. Use 5-10 for analyzing specific short moments. Use 0.1-0.5 for long videos.7475**resolution:** 256-512 for quick scans. 512-768 for normal analysis. 1024+ when reading on-screen text or fine details.7677**segments:** Use when you have analysis data. Each segment can have its own fps and resolution. Overrides global fps/start_time/end_time.7879**view_sample:** Returns N evenly spaced frames from the extracted set. Use this to avoid flooding context with too many images.8081**skip_audio:** Set to true when you only need visual analysis.8283**YouTube URLs:** Pass supported YouTube URLs directly as `path`. Treat84`transcription_source: "youtube_subtitles"` as stronger than85`youtube_auto_captions`; auto-captions can still have recognition errors.8687## Working with Results8889You receive:90- **Manifest** (when enable_index is on) — index of all cached frames by resolution and timestamp. Use this to avoid redundant requests.91- **Frames** as images — look at them to understand what's happening visually92- **Audio transcription** with timestamps — read the speech content93- **Audio tags** — non-speech events (music, sounds, etc.)94- **Analysis data** — scene changes, silence intervals, motion levels, etc.9596Combine all sources to form a complete understanding. Use analysis + transcription to guide where you look visually. The analysis tells you WHEN things happen; the frames tell you WHAT happens.