Clawtouch MCP

A standalone Python process that speaks Model Context Protocol (MCP) over stdio and exposes mouse / keyboard primitives - hid.click, hid.type, hid.scroll, key combos, hid.screenshot - to whatever AI agent you already use. Under the hood it talks over USB serial to a ClawTouch HID device (a Raspberry Pi Pico 2 running the open ClawTouch HID firmware, or any turnkey ClawTouch box) and translates each tool call into a…. Its 18 documented tools cover hid, mouse, button, device.

People who work with hid, mouse and button and want it reachable from Claude, Cursor, VS Code, or another MCP client. The project is written in Python.

VERIFIED ACTIVE

LAST COMMIT 2026-09-15 · ★ 10 · #76 OF 227 MAINTAINED AUTOMATION · VERIFIED 2026-09-18

MIT · Python servers · how we verify → /methodology

01 · Install Clawtouch MCP

before you install - you'll need

The README does not document required environment variables for a basic install.

Claude Code

claude mcp add tinqiao-oss-clawtouch-mcp -- uvx clawtouch-mcp

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "tinqiao-oss-clawtouch-mcp": {
      "command": "uvx",
      "args": [
        "clawtouch-mcp"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

license MIT - declared in the repository

pypi package clawtouch-mcp - check the name against the project README before installing (PyPI has no namespace ownership)

registry namespace io.github.tinqiao-oss is GitHub-verified and matches the repo owner

03 · What Clawtouch MCP can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

An agent gets 18 documented tools spanning hid, mouse, button, device, including hid.click, hid.move, hid.hover, hid.type.

Capability map

Tools grouped from the project's README - what Clawtouch MCP lets an agent do.

Hid

15 tools - e.g. v1.0; v1.0; v1.0

hid.click · hid.move · hid.hover · hid.type · hid.scroll · hid.key…

Device

2 tools - e.g. v1.0; v1.0

device.list · device.info

Screen

1 tool - e.g. v0.5.0

screen.windows

Latest releases

v0.5.2 · 2026-09-15

Fixed - with the board busy, the server opened its REPL console and wrote protocol frames into it · A Pico running the open firmware shows two serial ports: the REPL console · and the data channel. list_pico_ports…

v0.5.1 · 2026-08-28

macOS answered foreground by taking CGWindowList's first entry. That order does answer a real question - which window is topmost - just not the one the field claims: every layer-0 window an application owns is in that…

v0.5.0 · 2026-08-24

Four capabilities, one theme: a wrong answer must never report success. · screen.windows - top-level window geometry, how much of a window is actually on top, whether it accepts input at all (a modal dialog leaves a…

04 · Who maintains Clawtouch MCP

clawtouch-mcp is maintained by tinqiao-oss. It's the only MCP server we track from this author; the repo dates to Jun 2026.

05 · Facts

category
automation - ranked #76 of 227 actively-maintained automation servers as of 2026-09-18.
release cadence
3 releases in the last 90 days (latest 2026-09-15)
registry
io.github.tinqiao-oss/clawtouch-mcp (active, first published 2026-06-02 · 5 versions)
packages
pypi:clawtouch-mcp

06 · Clawtouch MCP FAQ

Is Clawtouch MCP still maintained?

Yes - as of 2026-09-18, its last commit was 2026-09-15 and it shipped 3 releases in the last 90 days. We re-verify nightly.

What can Clawtouch MCP do?

An agent gets 18 documented tools spanning hid, mouse, button, device, including hid.click, hid.move, hid.hover, hid.type.

How do I install Clawtouch MCP?

Run `uvx clawtouch-mcp`. The README does not document required environment variables for a basic install. You can also paste the ready-made client config above.

Does Clawtouch MCP run locally?

Yes - it's a stdio server: it runs on your machine (via uvx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to Clawtouch MCP