Skip to main content

Two-faced MCP gateway for StackChan (xiaozhi-esp32): bridges stdio MCP clients to the ESP32 over WebSocket + HTTP.

Project description

gateway

Python "two-faced" MCP gateway for the M5Stack official StackChan kit (custom xiaozhi-esp32 firmware in ../firmware/main/boards/stackchan/).

┌─────────────┐  stdio MCP  ┌──────────────┐  WebSocket MCP  ┌──────────┐
│ MCP client  │ ──────────▶ │   gateway    │ ──────────────▶ │  ESP32   │
│ (Claude...) │ ◀────────── │  (this dir)  │ ◀────────────── │ StackChan│
└─────────────┘             │              │                 └──────────┘
                            │  /capture    │ ◀─ HTTP POST ──┘  (JPEG)
                            └──────────────┘

The gateway exposes a clean stdio MCP server to the LLM client (left) while speaking the xiaozhi-esp32 WebSocket MCP dialect to the device (right). It also runs a small HTTP server (/capture) so the ESP32 can upload photos.

The package name on PyPI, the installed CLI command, and the MCP server id in your client config are all stackchan-mcp.

Install (end users)

The gateway is published to PyPI as stackchan-mcp. For end users, install it as an isolated CLI tool:

uv tool install stackchan-mcp
# or
pipx install stackchan-mcp

Then run:

stackchan-mcp

stackchan-mcp reads its configuration (STACKCHAN_TOKEN, VISION_HOST, etc.) from environment variables or a .env file in the working directory. See the Setup section below for the supported variables. For the firmware side (WebSocket gateway URL, auth token, NVS configuration), see ../README.md.

If you prefer a project-managed virtualenv, pip install stackchan-mcp inside an active venv works as well, and python -m stackchan_mcp inside that venv is equivalent to stackchan-mcp. Just avoid pip install against the system Python (PEP 668).

Setup

cd gateway
cp .env.example .env       # then edit .env (see below)
uv sync

Edit .env:

  • STACKCHAN_TOKEN: Bearer token for ESP32 auth (must match firmware setting)
  • VISION_URL: full public capture URL for remote access tunnels, such as https://stackchan.example.ts.net:8443/capture
  • VISION_TOKEN: optional separate Bearer token for capture uploads; if empty, STACKCHAN_TOKEN is reused
  • VISION_HOST: LAN IP of this machine, as seen from the ESP32 (something like 192.168.x.y on a typical home network — run ifconfig or ip addr to find it). Required for take_photo when VISION_URL is not set.

Run

uv run python -m stackchan_mcp

Default ports:

  • WebSocket (ESP32 -> gateway): 0.0.0.0:8765
  • HTTP capture (ESP32 -> gateway): 0.0.0.0:8766

For non-LAN setups, see ../docs/remote-access.md for the Tailscale Funnel flow.

When you restart the gateway during development, an already-connected ESP32 will notice the dropped WebSocket and retry while idle. The retry delay starts at 5 seconds and backs off up to 60 seconds. After the gateway is listening again, check get_status from the stdio MCP side to confirm the device is back.

Configuration changes

The gateway reads .env once at process start. Because the gateway runs as a stdio MCP server (it has no standalone CLI mode beyond --help / --version / --check), editing .env while it is connected to an MCP client does not take effect on the running process — and killing the gateway process directly will not auto-restart it; the MCP client owns the lifecycle.

After editing .env (for example to update STACKCHAN_TOKEN, VISION_URL, or VISION_TOKEN):

  1. Reconnect the MCP client. In Claude Code this is /mcp to reconnect, or a full Claude Code restart.
  2. Confirm mcp__stackchan-mcp__get_status returns connected: true with the expected tools_count.
  3. If the ESP32 was already connected with a stale auth credential, hard-reset the device (esptool.py --before default_reset --after hard_reset chip_id, or DTR/RTS toggle via pyserial) so it reconnects with the fresh configuration.

STACKCHAN_TOKEN takes precedence over the legacy BEARER_TOKEN; setting either is enough, but if you have both, keep them aligned.

Tests

uv run pytest tests/ -v

Register as MCP server

Claude Code (~/.claude.json)

{
  "mcpServers": {
    "stackchan-mcp": {
      "type": "stdio",
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/absolute/path/to/stackchan-mcp/gateway",
        "python",
        "-m",
        "stackchan_mcp"
      ],
      "env": {
        "STACKCHAN_TOKEN": "your-secret-token-here",
        "VISION_HOST": "your.host.lan.ip"
      }
    }
  }
}

Claude Desktop (claude_desktop_config.json)

Same shape, under mcpServers.

Tools exposed to MCP client

Tool Description
get_status Gateway connection state (ESP32 connected? device info?)
get_device_info ESP32 device status (battery, volume, WiFi, etc.)
take_photo(question?) Trigger camera capture; returns saved JPEG path
set_volume(volume) Speaker volume 0-100
set_brightness(brightness) Screen brightness 0-100
move_head(yaw, pitch, speed?) Drive yaw + pitch servos
get_head_angles Read current yaw + pitch servo angles
get_touch_state Touch sensor state (press/release/stroke)
set_avatar(face) Switch avatar expression (idle / happy / thinking / sad / surprised / embarrassed), or off to hide the avatar and disable blink so the underlying xiaozhi-esp32 screens (WiFi config UI, OTA, settings) are visible. A subsequent set_avatar(<other face>) brings it back and restores blink.
set_blink(state) Blink animation on/off
set_mouth(state) Mouth shape (closed / half / open / e / u), one-shot, held until next call
set_mouth_sequence(steps) Queue and play a list of {shape, duration_ms} steps locally for TTS lip-sync. The firmware walks the queue without per-step network RTT. Calling set_mouth, set_avatar, or this tool again interrupts the in-flight sequence; autonomous blink is paused while a sequence is playing.
check_vm_en Read PY32 VM EN GPIO state (servo power supply diagnostic)
set_led(index, r, g, b) Set one of the 12 base RGB LEDs by index (0..11); channels 0..255. Updates immediately.
set_all_leds(r, g, b) Set all 12 base RGB LEDs to the same color. Updates immediately.
set_leds(colors) Batch-set the first N LEDs from a [[r,g,b], ...] array (1..12 entries). Single I2C burst + one latch — use this for animations / multi-color patterns instead of N individual set_led calls. Trailing LEDs (beyond len(colors)) keep their previous color. Validation is atomic: a malformed entry rejects the whole call without mutating any LED.
clear_leds Turn all 12 base RGB LEDs off.

The 12 base LEDs are 12× WS2812C wired to the PY32L020 IO expander (expander pin 13, not an ESP32 GPIO), so all four LED tools share the PY32 I2C bus with the servo-power and Si12T touch paths. If the PY32 init fails at boot, the LED tools degrade with available=false instead of cascading errors.

The mapping from these names to ESP32-side self.* MCP tools is in stackchan_mcp/stdio_server.py.

Architecture

stackchan_mcp/
├── __main__.py         # entry: starts gateway + stdio server
├── gateway.py          # singleton orchestrator
├── stdio_server.py     # MCP client side (stdio MCP server)
├── esp32_client.py     # ESP32 side (WebSocket MCP client + auth)
├── capture_server.py   # HTTP /capture endpoint for photo uploads
├── server.py           # legacy local WS test server (unused in prod)
├── mcp_router.py       # legacy local stub router (unused in prod)
├── protocol.py         # JSON-RPC 2.0 message helpers
├── tools.py            # ESP32-side tool definitions (stub/test)
├── audio_stream.py     # placeholder for future Opus pipeline
└── handlers/
    ├── robot.py        # legacy stubs
    ├── camera.py       # legacy stubs
    └── audio.py        # legacy stubs

Captures land in ~/.stackchan/captures/ by default.

Manual smoke test (Python)

import asyncio, json, websockets

async def smoke():
    async with websockets.connect(
        "ws://localhost:8765",
        additional_headers={"Authorization": "Bearer your-secret-token-here"},
    ) as ws:
        await ws.send(json.dumps({
            "type": "hello", "version": 1, "audio_params": {},
        }))
        print(await ws.recv())

        await ws.send(json.dumps({"type": "mcp", "payload": {
            "jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {},
        }}))
        print(await ws.recv())

        await ws.send(json.dumps({"type": "mcp", "payload": {
            "jsonrpc": "2.0", "id": 2, "method": "tools/list", "params": {},
        }}))
        print(await ws.recv())

asyncio.run(smoke())

Phase roadmap

  • Phase 1 (done): stdio MCP shell, ESP32 WebSocket bridge, tool routing
  • Phase 2 (done): real servo / volume / brightness via ESP32
  • Phase 3 (done): camera capture (JPEG over HTTP)
  • Phase 4 (planned): Opus audio stream (STT/TTS pipeline)

License

The gateway is distributed under the MIT License (see LICENSE). The parent monorepo's firmware/ directory contains SCServo_lib code under GPL-3.0, but those files live only inside firmware/main/boards/stackchan/ and never enter this package. The gateway and firmware communicate only over WebSocket, so the GPL/MIT boundary is preserved at the process level.

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

stackchan_mcp-0.8.0.tar.gz (260.4 kB view details)

Uploaded Source

Built Distribution

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

stackchan_mcp-0.8.0-py3-none-any.whl (72.0 kB view details)

Uploaded Python 3

File details

Details for the file stackchan_mcp-0.8.0.tar.gz.

File metadata

  • Download URL: stackchan_mcp-0.8.0.tar.gz
  • Upload date:
  • Size: 260.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for stackchan_mcp-0.8.0.tar.gz
Algorithm Hash digest
SHA256 6418e11f2237329ce5993467f1e1a6d769d5e0eac1e81ea22429c1a1c80eccfd
MD5 2871f8643a80b761d3e3e892575403a2
BLAKE2b-256 22d2b4f238249c33b07f1ac6abc5511172e4839ffe16cf032af23f7e4961363b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stackchan_mcp-0.8.0.tar.gz:

Publisher: publish.yml on kisaragi-mochi/stackchan-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stackchan_mcp-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: stackchan_mcp-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 72.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for stackchan_mcp-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 05e38bcf433c5d0597907852cf1f9b44129e356f7efee89dbeb85b8fc81c4794
MD5 6331ce74e307c26720868337e3056e9a
BLAKE2b-256 eb5a14ae546edf5e43cf860c7cea25f7663c9cd0b1564a648bef35c33b0f661b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stackchan_mcp-0.8.0-py3-none-any.whl:

Publisher: publish.yml on kisaragi-mochi/stackchan-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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