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., "@Webcam MCPTake a photo and describe what you see."
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.
Webcam MCP πΈ
MCP server for webcam access - capture photos and video for LLM agents
Webcam MCP is a Model Context Protocol (MCP) server that gives LLM agents direct access to your webcam. It enables autonomous agents to capture photos and record video sequences, making it possible to debug cyberphysical systems, monitor environments, and interact with the physical world without human intervention.

Features:
πΈ High-Resolution Photos: Capture still images
π₯ Video Recording: Record a sequence of frames over a specified duration
π Remote Access: SSE transport for network-accessible deployment
βοΈ Configurable: Adjust resolution, camera index, and quality settings
π Cross-Platform: Works on Linux, macOS, and Windows
π Easy Integration: Simple MCP client configuration
Usage
Install:
Start the MCP server:
The server will start on http://0.0.0.0:8000/sse by default.
You can test the server using any MCP client, e.g., MCP Inspector (install via npx @modelcontextprotocol/inspector).
CLI options
Option | Type | Default | Description |
| string |
| Server host address |
| integer |
| Server port |
| integer |
| Webcam device index |
| integer |
| Default photo width in pixels |
| integer |
| Default photo height in pixels |
| integer |
| Default video frame width in pixels |
| integer |
| Default video frame height in pixels |
| - | - | Show version and exit |
Examples
MCP Client Configuration
Claude Desktop
Add to your claude_desktop_config.json:
Location of config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Other MCP Clients
Any MCP client supporting SSE transport can connect to:
MCP Tools
take_photo
Captures a single high-resolution photo from the webcam.
Parameters: None
Returns: JPEG image
Example usage in Claude:
record_video
Records video frames over a specified duration.
Parameters:
duration_seconds(float, optional): Recording duration in secondsMinimum: 1.0 second
Maximum: 60.0 seconds
Default: 5.0 seconds
Returns: List of JPEG frames
Example usage in Claude:
Troubleshooting
Camera Permission Denied (macOS)
On macOS, you need to grant camera permissions:
Open System Settings β Privacy & Security β Camera
Enable camera access for Terminal (or your terminal app)
Restart the terminal and try again
Camera Already in Use
If you see "Camera unavailable" errors:
Close other applications using the webcam (Zoom, Skype, etc.)
Check if another instance of
webcam-mcpis runningTry a different camera index:
webcam-mcp --camera-index 1
Wrong Camera Index
To find available cameras:
Then use --camera-index with the correct number.
Resolution Not Supported
If your camera doesn't support the requested resolution, the server will:
Log a warning with the actual resolution achieved
Continue operating with the camera's maximum supported resolution
Check logs for messages like:
Development
All tests use mocked camera hardware, so no physical webcam is required for testing.
Release
To tag and release a new version, push a new commit to main with a new __version__ string.
This will trigger a new tag and a new release push to PyPI.