video-capture-mcp
Provides screen recording capabilities for Android devices via ADB, allowing AI agents to capture UI motion and extract key frames.
Provides screen recording capabilities for iOS Simulator, enabling AI agents to record and extract frames from simulated iOS device interactions.
Provides screen recording capabilities for macOS, including app-window-bounded recording and cursor tracking, allowing AI agents to capture UI motion and extract key frames.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@video-capture-mcprecord and extract frames from Finder"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
video-capture-mcp
macOS, iOS Simulator, and Android screen recording plus key-frame extraction for MCP-aware AI agents.
video-capture-mcp gives AI agents a stdio MCP server for recording UI motion while they operate apps, then extracting frames with ffmpeg. It is designed for bugs and requirements that screenshots miss, such as keyboards opening, hover/unhover states, and transient layout glitches.
Features
3 OS recording backends in one MCP server: macOS, iOS Simulator, and Android.
App-window-bounded macOS recording with activation and visible-region checks.
Manual start/stop recording across macOS, iOS Simulator, and Android.
Hover sequence API for UI demos that need mouse movement without clicks.
record_and_extractfor one-shot recording plus ffmpeg key-frame extraction.FastMCP
Imageinline responses for extracted frames.
Related MCP server: app-screen-mcp
Requirements
macOS 12 or newer.
Python 3.11 or 3.12 for PyPI and
uvxinstalls. Homebrew installs its own Python dependency.uvfor theuvxinstall method (Option 1), which provides theuvxcommand. Option 2 (pip, standard CPython pip) and Option 3 (Homebrew) do not require uv. See the Quickstart for the install command, or the uv installation docs.ffmpegandffprobe.Xcode Command Line Tools for iOS Simulator recording.
Android platform-tools and
adbfor Android recording.
Installation
You do not need to clone this repository. Pick one install method below. New to MCP? Follow the numbered Quickstart instead: it walks through uv, ffmpeg, registration, and macOS permissions in order.
Option 1: uvx (zero install) [Recommended]
uvx is bundled with uv. If uv is not installed yet, see Quickstart step 1. Then register the server:
Claude Code:
claude mcp add --scope user --transport stdio video_capture -- uvx video-capture-mcpClaude Desktop:
{
"mcpServers": {
"video_capture": {
"command": "uvx",
"args": ["video-capture-mcp"]
}
}
}VS Code / Cursor:
{
"servers": {
"video_capture": {
"type": "stdio",
"command": "uvx",
"args": ["video-capture-mcp"]
}
}
}Codex:
[mcp_servers.video_capture]
command = "uvx"
args = ["video-capture-mcp"]Goose:
goose configure --name video_capture --command "uvx video-capture-mcp"Option 2: pip
python3 -m pip install video-capture-mcp
claude mcp add --scope user --transport stdio video_capture -- video-capture-mcpCodex:
[mcp_servers.video_capture]
command = "video-capture-mcp"
args = []Option 3: Homebrew
brew install Corvus400/tap/video-capture-mcp
claude mcp add --scope user --transport stdio video_capture -- video-capture-mcpCodex:
[mcp_servers.video_capture]
command = "video-capture-mcp"
args = []Quickstart (Claude Code)
Install
uv.curl -LsSf https://astral.sh/uv/install.sh | sh # or: brew install uvuvx(used below) ships withuv.Install
ffmpeg.brew install ffmpegRegister the MCP server.
claude mcp add --scope user --transport stdio video_capture -- uvx video-capture-mcpGrant macOS Screen Recording permission.
Recording requires Screen Recording permission. See the macOS Permissions section just below for the exact steps, and run
check_macos_permissionsfrom the agent if you are unsure which process to add.Record.
Ask Claude Code to start recording a visible app window:
{ "app_name": "Finder", "options": { "include_cursor": true } }Have the agent operate the UI, then call
mcp__video_capture__stop_recordingwith the returnedsession_id.
macOS Permissions
See docs/permissions.md for full details.
Screen Recording is required for
start_recording target=macosandstart_app_window_recording.Accessibility is required for
move_pointerandhover_sequence.This is a macOS TCC requirement and cannot be granted automatically by an MCP server. It is normally a one-time permission for the process that launches the server, not a per-recording step.
From Claude Code or Codex, use
check_macos_permissionswhen setup is unclear. It reports whether Screen Recording works, the launcher process macOS is evaluating, the System Settings location, and the required MCP client restart.Add the launcher process to System Settings > Privacy & Security > Screen Recording. For
uvxandpip, this is usually the Python interpreter for that environment. For Homebrew, it is the installedvideo-capture-mcpexecutable.
Tools
Tool | Purpose | Key args |
| Start recording on selected target |
|
| Stop a session and normalize orientation |
|
| Stop active sessions, optionally by target |
|
| macOS app-window-bounded recording |
|
| Activate and measure front-window visibility |
|
| Mouse-move sequence without clicks |
|
| Single mouse-move without click |
|
| ffmpeg scene or fixed-fps frame extraction |
|
| Record and extract in one call |
|
| List current recordings | none |
| Reap recordings from dead previous server PIDs | none |
| Diagnose macOS Screen Recording permission and setup guidance | none |
Detailed parameters and option schemas are in docs/tools.md.
Configuration
VIDEO_CAPTURE_MCP_OUTPUT_DIR: default output root for recordings whenoutput_pathis omitted. Defaults to the system temp directory undervideo-capture-mcp.
Troubleshooting
See docs/troubleshooting.md for TCC denial, missing ffmpeg, no booted Simulator, and unauthorized adb devices.
Development
See docs/development.md for clone, local install, tests, linting, package build, and the bin/video-capture-mcp from-source wrapper.
Security
See SECURITY.md. Report vulnerabilities through GitHub Private Security Advisories.
Explicit output_path values are treated as trusted MCP client input. Use MCP client approvals and filesystem policy to control where agents may write.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Corvus400/video-capture-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server