Skip to main content

MCP server for webcam access - capture photos and video for LLM agents

Project description

Webcam MCP 📸

MCP server for webcam access - capture photos and video for LLM agents

CI License: MIT


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.

Webcam MCP demo

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:

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).

CLI options

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

Examples

# 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

MCP Client Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "webcam": {
      "url": "http://localhost:8000/sse"
    }
  }
}

Location of config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Other MCP Clients

Any MCP client supporting SSE transport can connect to:

http://<host>:<port>/sse

MCP Tools

take_photo

Captures 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_video

Records video frames over a specified duration.

Parameters:

  • duration_seconds (float, optional): Recording duration in seconds
    • Minimum: 1.0 second
    • Maximum: 60.0 seconds
    • Default: 5.0 seconds

Returns: List of JPEG frames

Example usage in Claude:

Record a 10-second video and analyze any movement you detect.

Troubleshooting

Camera Permission Denied (macOS)

On macOS, you need to grant camera permissions:

  1. Open System SettingsPrivacy & SecurityCamera
  2. Enable camera access for Terminal (or your terminal app)
  3. Restart the terminal and try again

Camera Already in Use

If you see "Camera unavailable" errors:

  1. Close other applications using the webcam (Zoom, Skype, etc.)
  2. Check if another instance of webcam-mcp is running
  3. Try a different camera index: webcam-mcp --camera-index 1

Wrong Camera Index

To 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.

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:

WARNING: Requested resolution 1920x1080, but camera provided 1280x720

Development

# 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.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

webcam_mcp-0.1.2.tar.gz (769.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

webcam_mcp-0.1.2-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file webcam_mcp-0.1.2.tar.gz.

File metadata

  • Download URL: webcam_mcp-0.1.2.tar.gz
  • Upload date:
  • Size: 769.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for webcam_mcp-0.1.2.tar.gz
Algorithm Hash digest
SHA256 5dac2d744a9b807da3d1d6f2d58f93e23f30ba8f65dbb8f1b60803a50afa3664
MD5 a0b0ad9278bfe665ab3832ab03bca95a
BLAKE2b-256 233c42e3955d2c079725a40d9449857196d96bec558ca1a367433fccde2fb427

See more details on using hashes here.

File details

Details for the file webcam_mcp-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: webcam_mcp-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for webcam_mcp-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d88ca0f9afae2ec0927710183f5dc5c07a23b263969bf347ca0f8e45a0ad4d2e
MD5 2f8c83553717a2ee8e92ee637d84e12c
BLAKE2b-256 ee2e7957c3983f39af5e9847ef5c6c072f386e07e8b646835b8fb0f3d4bb050e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page