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.
-
Install the Cinch app on your Mac
Terminal window brew install --cask cinchcli/tap/cinchcliThis installs
Cinch.appto/Applicationsand puts thecinchCLI on your PATH. Same binary either way.Terminal window curl -fsSL https://cinchcli.com/install.sh | shThis installs the
cinchbinary to/usr/local/bin. Supports Debian/Ubuntu and RHEL/Fedora.Download
cinch_Windows_x86_64.zipfrom GitHub Releases, extract, and addcinch.exeto PATH.Terminal window brew install cinchcli/tap/cinchcliFormula install — no desktop app. Useful for headless Macs or Linux brew setups.
Terminal window docker run -d -p 8080:8080 -v cinch-data:/data \ghcr.io/cinchcli/relay:latest -
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.”
-
Copy your first clip
In the welcome card, click Copy next to the
echo "hello cinch" | cinch copysnippet. Open a terminal, paste, and hit enter:Terminal window echo "hello cinch" | cinch copy# → ✓ Saved 12 B to local history — not sentIt lands in your local history instantly — read it back with
cinch paste. Nothing left your machine yet; that’s whatcinch copyis for. To share it across machines, you’ll usecinch sendnext. -
Add a server to your fleet
This is what Cinch is for. From your Mac terminal:
Terminal window cinch fleet add user@hostCinch SSHes in, installs itself on the server, and registers it in your fleet. No manual steps on the remote end.
-
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 # macOScinch pull | xclip # Linux (X11) -
Prepare terminal errors for AI
cinch ai fixis explicit: it only calls an AI provider when you configure or select one. Start with--no-sendto inspect the prompt:Terminal window cargo test 2>&1 | cinch ai fix --no-sendcinch ai fix latest --no-sendAdd the local MCP server when you want an AI tool to search your local clipboard history:
Terminal window claude mcp add cinch -- cinch mcp
What’s next?
Section titled “What’s next?”- See the full CLI Reference for all flags.
- Read
cinch aifor 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.
Was this page helpful?