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, key, release, mouse.

People connecting automation tools to Claude, Cursor, VS Code, or another MCP client. The project is written in Python.

VERIFIED ACTIVE

LAST COMMIT 2026-08-24 · ★ 10 · #111 OF 194 MAINTAINED AUTOMATION · VERIFIED 2026-08-25

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, key, release, mouse, 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.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…

v0.4.6 · 2026-06-07

Test-only patch. test_explicit_screen_wins_over_detection over-asserted that _detect_screen is never called for an explicit --screen; the 0.4.5 Retina guard legitimately consults it (read-only, point/pixel check) on…

v0.4.5 · 2026-06-07

Rolls up the internal-only 0.4.4 (never published to PyPI) plus this release's additions. · Added · macOS Retina --screen pixel/point guard. The OS cursor query returns CoreGraphics points, not pixels (Retina 2:1), but…

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 #111 of 194 actively-maintained automation servers as of 2026-08-25.
release cadence
8 releases in the last 90 days (latest 2026-08-24)
registry
io.github.tinqiao-oss/clawtouch-mcp (active, first published 2026-06-02 · 3 versions)
packages
pypi:clawtouch-mcp

06 · Clawtouch MCP FAQ

Is Clawtouch MCP still maintained?

Yes - as of 2026-08-25, its last commit was 2026-08-24 and it shipped 8 releases in the last 90 days. We re-verify nightly.

What can Clawtouch MCP do?

An agent gets 18 documented tools spanning hid, key, release, mouse, 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