Plotter Studio

Plotter Studio

An MCP server that gives AI agents eyes and a robotic arm to compose and iterate generative art on an AxiDraw pen plotter via webcam feedback.

Category
访问服务器

README

Plotter Studio

An MCP server that gives AI agents eyes and a robotic arm.

Plotter Studio connects AI agents to an AxiDraw pen plotter and a webcam via the Model Context Protocol, enabling the agent to compose generative art as SVG, send it to the plotter, observe the result through the camera, and iterate.

How it works

  1. The agent composes SVG artwork sized to your paper
  2. Plotter Studio sends the SVG to the AxiDraw via the NextDraw API
  3. The agent requests pen changes between passes (you do the swap)
  4. The agent captures a webcam frame to see the result
  5. The agent composes the next layer based on what it sees
  6. Repeat until the piece is done

Requirements

  • uv (Python package manager)
  • Python 3.13+
  • AxiDraw or NextDraw pen plotter (NextDraw firmware)
  • USB webcam or gphoto2-compatible camera (e.g. Sony A7III)
  • Node.js 18+ (for mcp-remote)
  • gphoto2 (optional, for tethered camera backend)

Quick start

1. Clone and install

git clone https://github.com/ucodia/plotter-studio-mcp.git
cd plotter-studio-mcp
uv sync

This creates a virtual environment and installs all dependencies (FastMCP, nextdraw-api, OpenCV, Pillow).

2. Set up a camera

Plotter Studio supports two camera backends: OpenCV (USB webcams) and gphoto2 (tethered cameras like Sony, Canon, Nikon).

Option A: USB webcam (default)

Plug in your webcam, then find its device index:

uv run python -c "
import cv2
for i in range(10):
    cap = cv2.VideoCapture(i)
    if cap.isOpened():
        w, h = int(cap.get(3)), int(cap.get(4))
        print(f'  {i}: {w}x{h}')
        cap.release()
"

Set CAMERA_INDEX to the index you want to use (default is 0).

Raspberry Pi note: The pip opencv-python-headless wheel may lack V4L2 support on ARM. If the camera is detected by lsusb but OpenCV can't open it, install the system package and recreate the venv with system site-packages:

sudo apt install python3-opencv
uv venv --system-site-packages --python python3
uv sync

Option B: gphoto2 (tethered camera)

For higher quality captures, you can use a tethered camera via gphoto2. This works with many Sony, Canon, and Nikon cameras connected over USB.

Install gphoto2:

# macOS
brew install gphoto2

# Debian/Ubuntu/Raspberry Pi OS
sudo apt install gphoto2

Set your camera to PC Remote USB mode (the exact menu path varies by model), connect it via USB, and verify detection:

gphoto2 --auto-detect

Then set CAMERA_BACKEND=gphoto2 in your .env file. Captures will be slower (a few seconds per shot) but image quality will be significantly better. Set your camera to JPG-only (no RAW) to speed up transfers.

3. Run the server

uv run plotter-studio

This starts the MCP server over SSE at http://127.0.0.1:8888/sse. To listen on all interfaces (e.g. when running on a remote Pi), pass --host:

uv run plotter-studio --host

4. Configure Claude Desktop

Open your Claude Desktop config file:

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

Add the plotter-studio server:

{
    "mcpServers": {
        "Plotter Studio": {
            "command": "npx",
            "args": [
                "mcp-remote@latest",
                "http://127.0.0.1:8888/sse",
                "--allow-http"
            ]
        }
    }
}

5. Restart Claude Desktop

Quit and reopen Claude Desktop. You should see Plotter Studio listed as a connected MCP server (look for the hammer icon in the chat input area). If it doesn't appear, check the MCP logs in Claude Desktop's developer console.

6. Test it

Ask Claude something like:

What's the plotter status?

or

Capture a photo from the camera so I can see the paper.

If both respond without errors, you're ready to make art.

Tools

Tool What it does
server_info Get HTTP base URL and file transfer endpoints
plot_start Plot an uploaded SVG by file ID (background, non-blocking)
plot_stop Cancel the current plot gracefully
plot_status Check plotter state (idle/plotting/error)
capture Take a photo, returns file reference for HTTP download
tool_move Move tool to a position (tool up)
tool_raise Raise the tool
tool_home Return tool carriage to home (0,0)
notify Send a notification to the human operator

Environment variables

All configuration is via environment variables:

Variable Default Description
SVG_DIR output Directory where SVG files are saved
WEBHOOK_URL (empty) Webhook URL for push notifications (supports ntfy.sh)
PLOTTER_MODEL 2 NextDraw model number (2 = AxiDraw V3/A3)
PLOTTER_PENLIFT 3 Pen lift type (3 = brushless servo)
PLOTTER_PEN_POS_DOWN 0 Pen-down servo position as percentage (0=lowest)
PLOTTER_PEN_POS_UP 50 Pen-up servo position as percentage (100=highest)
CAMERA_BACKEND opencv Capture backend: opencv for webcams, gphoto2 for tethered cameras
CAMERA_INDEX 0 Webcam device index (opencv backend only)
JPEG_QUALITY 90 JPEG output quality (1-100)
CAMERA_ROTATE_LANDSCAPE 0 Camera rotation in degrees for landscape orientation
CAMERA_ROTATE_PORTRAIT 90 Camera rotation in degrees for portrait orientation
MCP_PORT 8888 Port for the MCP SSE server
HTTP_BASE_URL http://localhost:{MCP_PORT} Base URL for HTTP file transfer endpoints

Notifications

Plotter Studio can send push notifications so you don't have to watch the screen while it plots. Set WEBHOOK_URL to a ntfy.sh topic URL and subscribe on your phone. You'll get pinged when a plot starts, finishes, errors, or when the agent needs you to swap a pen.

Generic JSON webhooks also work. If the URL doesn't contain "ntfy", the server POSTs a JSON body with event, timestamp, and event-specific fields.

Project structure

src/plotter_studio/
    server.py       # MCP server, tool definitions, HTTP routes, config
    plotter.py      # AxiDraw control and state machine
    camera.py       # Webcam and gphoto2 capture
    filestore.py    # Temp file store for HTTP file transfers
    webhook.py      # Push notifications
tests/
    test_plotter_state.py

License

AGPL-3.0-or-later

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选