Skip to content

Quick Start

Set up Cinch as a remote clipboard for developer context: local history first, cross-machine clipboard when you need it, and explicit AI workflows when you ask for them.

  1. Install the Cinch app on your Mac

    Terminal window
    brew install --cask cinchcli/tap/cinchcli

    This installs Cinch.app to /Applications and puts the cinch CLI on your PATH. Same binary either way.

  2. Open Cinch and sign in

    Launch Cinch from /Applications. The app opens to an empty dashboard and walks you through signing in with GitHub or Google — a browser tab opens, you authenticate, and the tab closes.

    You’ll see a welcome card: ”✨ You’re signed in. Copy your first clip.”

  3. Copy your first clip

    In the welcome card, click Copy next to the echo "hello cinch" | cinch copy snippet. Open a terminal, paste, and hit enter:

    Terminal window
    echo "hello cinch" | cinch copy
    # → ✓ Saved 12 B to local history — not sent

    It lands in your local history instantly — read it back with cinch paste. Nothing left your machine yet; that’s what cinch copy is for. To share it across machines, you’ll use cinch send next.

  4. Add a server to your fleet

    This is what Cinch is for. From your Mac terminal:

    Terminal window
    cinch fleet add user@host

    Cinch SSHes in, installs itself on the server, and registers it in your fleet. No manual steps on the remote end.

  5. Use it daily

    SSH into the server and pipe a log or a command output to cinch send:

    Terminal window
    tail -n 20 error.log | cinch send
    # → ✓ Sent to your fleet (E2EE)

    Back on your Mac, the clip appears in your dashboard and lands on your Mac clipboard automatically — paste it anywhere with ⌘V.

    Prefer explicit pulls?

    Terminal window
    cinch pull | pbcopy # macOS
    cinch pull | xclip # Linux (X11)
  6. Prepare terminal errors for AI

    cinch ai fix is explicit: it only calls an AI provider when you configure or select one. Start with --no-send to inspect the prompt:

    Terminal window
    cargo test 2>&1 | cinch ai fix --no-send
    cinch ai fix latest --no-send

    Add the local MCP server when you want an AI tool to search your local clipboard history:

    Terminal window
    claude mcp add cinch -- cinch mcp
  • See the full CLI Reference for all flags.
  • Read cinch ai for provider setup and the no-send privacy boundary.
  • Self-host the relay if you want your data on your own server.
  • Add more machines to your fleet as you go — there’s no limit.