loading…
Search for a command to run...
loading…
An MCP server that provides LLM agents with direct access to webcam hardware for capturing high-resolution photos and recording video sequences. It enables auto
An MCP server that provides LLM agents with direct access to webcam hardware for capturing high-resolution photos and recording video sequences. It enables autonomous agents to monitor environments and interact with the physical world through standard Model Context Protocol tools.
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:
Install:
pip install webcam-mcp
Start the MCP server:
webcam-mcp
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).
| Option | Type | Default | Description |
|---|---|---|---|
--host |
string | 0.0.0.0 |
Server host address |
--port |
integer | 8000 |
Server port |
--camera-index |
integer | 0 |
Webcam device index |
--photo-width |
integer | 1920 |
Default photo width in pixels |
--photo-height |
integer | 1080 |
Default photo height in pixels |
--video-width |
integer | 640 |
Default video frame width in pixels |
--video-height |
integer | 480 |
Default video frame height in pixels |
--version |
- | - | Show version and exit |
# Start on custom port
webcam-mcp --port 9000
# Use different camera (e.g., external USB webcam)
webcam-mcp --camera-index 1
# Custom photo resolution
webcam-mcp --photo-width 1280 --photo-height 720
Add to your claude_desktop_config.json:
{
"mcpServers": {
"webcam": {
"url": "http://localhost:8000/sse"
}
}
}
Location of config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAny MCP client supporting SSE transport can connect to:
http://<host>:<port>/sse
take_photoCaptures a single high-resolution photo from the webcam.
Parameters: None
Returns: JPEG image
Example usage in Claude:
Can you take a photo and describe what you see?
record_videoRecords video frames over a specified duration.
Parameters:
duration_seconds (float, optional): Recording duration in secondsReturns: List of JPEG frames
Example usage in Claude:
Record a 10-second video and analyze any movement you detect.
On macOS, you need to grant camera permissions:
If you see "Camera unavailable" errors:
webcam-mcp is runningwebcam-mcp --camera-index 1To find available cameras:
import cv2
for i in range(10):
cap = cv2.VideoCapture(i)
if cap.isOpened():
print(f"Camera {i}: Available")
cap.release()
else:
print(f"Camera {i}: Not available")
Then use --camera-index with the correct number.
If your camera doesn't support the requested resolution, the server will:
Check logs for messages like:
WARNING: Requested resolution 1920x1080, but camera provided 1280x720
# Install in editable mode with dev dependencies
pip install -e ".[dev]"
# Run all tests
pytest
# Run with verbose output
pytest -v
# Run specific test file
pytest tests/test_camera.py
All tests use mocked camera hardware, so no physical webcam is required for testing.
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.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"webcam-mcp": {
"command": "npx",
"args": []
}
}
}