Webcam MCP
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.
README
<div align="center">
Webcam MCP 📸
MCP server for webcam access - capture photos and video for LLM agents
</div>
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:
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:
- 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 running - 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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。