Back to Maus

Maus for vibe coding (Claude Code, Cursor, Codex)

May 4, 2026 · updated Jun 4, 2026 · Manuel Toledo

You start the session typing into Claude Code. Twenty minutes in you're the copy-paste cable between the agent and the rest of your Mac. The error from your terminal. A snippet from an old Cursor session. A screenshot of the failing UI. The email Claude just drafted that you need to paste into Gmail without monospace and markdown asterisks dragging along.

This post is about removing yourself from that loop. Maus MCP gives Claude Code, Cursor and Codex direct access to your clipboard history — the agent reads what you copied, searches it, and writes clean text back into it for you to paste. You stop being the bus.

Install

One command, then restart Claude Code:

claude mcp add -s user maus -- npx maus-mcp@latest

Requirements: macOS, Node 20+, Maus installed and run once. Cursor and other MCP clients: see the install page. The MCP is open source on GitHub and ships as maus-mcp on npm.

What changes the moment it's installed

Pasting screenshots into Claude is expensive — and the cost compounds

The number people quote is "a screenshot is ~2,700 tokens." That number is for one image, one turn. The actual cost is worse, because an image pasted into a conversation joins the context window and gets re-processed on every subsequent turn.

Per Anthropic's vision docs, a 1920×1080 screenshot costs 2,691 visual tokens (⌈width/28⌉ × ⌈height/28⌉ 28-pixel patches). Multiply by the number of images and the number of turns they survive in context:

How the agent sees a 1920×1080 screenshotPer image4 imgs · 30 turns
Pasted directly into chat2,691322,920
Maus MCP get(id, want:"visual") — ≤800px JPEG~49359,160
Maus MCP get(id, want:"text") — OCR only~15018,000

OCR figure is a typical error-screenshot worth of text. Visual figure is the reduced JPEG Maus MCP serves to the agent.

322k versus 18k tokens re-processed across the rest of the session is the gap between "the agent has room to keep reasoning" and "Claude Max says no for the next four hours." Prompt caching cuts dollar cost; it doesn't reclaim window space. With the MCP installed, the agent picks the path on its own: visual for layout and design, text for error messages and code.

The six tools the agent gets

What stays useful on the human side

The MCP handles agent-to-clipboard flows. The fast manual flows you already lean on still matter when you're driving:

Privacy

Maus MCP is a local-only bridge. Your clipboard content — queries, titles, item text, OCR — never leaves your Mac. The MCP server reads Maus's local SQLite directly and talks to your agent over stdio. No cloud account, no sync, no clipboard data sent anywhere.

The MCP does report anonymous usage shape (which tool was called, how long it took, your Maus tier) so I can see what's used and what's broken. Opt out with MAUS_MCP_TELEMETRY=off. Full source is on GitHub — what you install from npm is what you read there.

Free vs Pro

The MCP follows your Maus tier exactly. Free gives the agent full access to the last 24 hours of history. Pro unlocks full history, advanced filters (source apps, content patterns), and lets the agent write items via add_item — which is the half that closes the loop for emails, queries and drafts. Maus Pro is a one-time $12.99.

Install Maus MCP

One line in Claude Code. Local-only. Open source. Your Maus history, inside the agent.

Install instructions Download Maus