How to access clipboard history on Mac

The macOS clipboard remembers exactly one item. Copy something new and the old contents disappear. Here is how Mac users add a real searchable history, what tools to consider, and which one to pick for your workflow.

Published April 28, 2026 7 min read By John Sciacchitano

The Mac clipboard is one item deep. Copy a URL, then copy a sentence to paste, then realize you needed that URL: gone. Every other major OS, including the Windows that I half-grew-up on and the Linux desktop I dabble with, ships with some version of clipboard history. Apple keeps deciding it is not worth the privacy tradeoff or the UX surface or whatever the internal reasoning is. Fifteen years of macOS releases later, no clipboard history.

Mac developers built around it. The clipboard manager category is mature, healthy, and fits every budget. This guide is the working primer: what these tools do at the OS level, which ones are worth installing in 2026, and how to set yours up without leaking anything you should not be leaking.

What a clipboard manager actually is

A clipboard manager is a small background app that watches the system pasteboard, the same thing that C writes to and V reads from. Whenever the pasteboard changes, the app saves a copy of what was on it. Over time you build a list of everything you have copied. A keyboard shortcut opens that list, you pick an item with arrow keys or by typing to filter, and the chosen item gets pasted (or copied back to the pasteboard for you to paste manually).

Under the hood, every clipboard manager uses the same Apple API, NSPasteboard.general. They poll its changeCount property a few times per second, and when it differs from the last value they read the pasteboard contents. There is no push notification API for clipboard changes on macOS, which is a small but real design quirk; every Mac clipboard manager polls.

What differs across managers: which content types they store (some are text-only, others handle images and files), how they search, whether they sync across devices, what they exclude by default, and how good the keyboard ergonomics feel.

The free option: Maccy

Maccy is the open-source default. Free, native Swift, MIT licensed, maintained since 2019 by Alex Rodionov. Install it via Homebrew (brew install --cask maccy) or the Mac App Store. The settings are minimal, the defaults are reasonable, and it is fast.

Maccy is intentionally narrow. It stores text and image clips, lets you search and favorite, and that is essentially the whole product. The author has stated repeatedly that he wants to keep it that way. If your needs match its scope, it is the right answer and you can stop reading.

What Maccy does not do: image previews worth speaking of (you get small thumbnails or text descriptions), pinned snippets with their own keyboard shortcuts (favorites are mixed into the regular history list), per-app exclusions configurable past the defaults, or cross-device sync. Some of these are present in lighter form than competitors, none of them are the focus.

For most casual users, Maccy plus an exclusion list for password managers is enough. Start there.

The polished paid option, $4.99

teenyclip is what I ship. Native Swift, single Mac, $4.99 lifetime, 3-day free trial. Built around the same NSPasteboard polling loop as Maccy, with a different opinion on what the surface area should look like.

Pinned clips with their own keyboard shortcuts. Pin up to nine items, then paste them with 1 through 9. Useful for the snippets you use every day (your address, an email signature, a code snippet you keep retyping). The pinned set is independent of your rolling history, so the snippet you pin will never get pushed out by today's copy storm.

Hex color detection. If a clip looks like a hex color (#FF6B35, FF6B35, rgb(255, 107, 53)), the popup shows a small color swatch next to it. A small thing, but if you are in design or front-end work, it is the kind of small thing that compounds into "feels good."

Sensitive app exclusion that does not require remembering. teenyclip ships with a default exclude list (1Password, Bitwarden, certain banking and password apps). When one of those apps is in the foreground, the clipboard monitor pauses. There is also a 2-second grace period after you switch out of a sensitive app, so a copy you started inside 1Password will still be ignored even if you switch to another app before pasting.

Rich previews. Images get full-size previews. Files show their icon, path, and size. Long text gets a sensible truncation. The popup looks like something you want to read, not something to escape.

The thing teenyclip does not do: cross-device sync. The data is local to one Mac. If you want clipboard sync across Mac, iPhone, iPad, you want Pastebot or Paste, and the comparison piece linked at the bottom covers when that matters.

The other paid options

The category has more tools than people usually realize. The big ones in 2026:

Pastebot by Tapbots, $19.99 once. The deepest tool in the category. Filters that transform clipboard content (strip formatting, lowercase, base64 encode), pasteboard sequences, per-app rules. Built by the team that made Tweetbot. Steeper learning curve, deeper payoff for power users.

Paste, $14.99 a year subscription. Polished UI, iCloud sync across Mac, iPhone, iPad. The catch is the recurring price. If cross-device sync is the killer feature for you, Paste is the most polished option.

Alfred or Raycast, included with their respective Powerpack or free tier. If you already use a launcher, do not add a second app. Alfred 5's clipboard history is good enough for most users; Raycast's is genuinely competitive with the dedicated tools.

Flycut, free, open source. Text-only, simpler than Maccy, kept around for people who liked Jumpcut. Worth knowing about for completeness; Maccy has surpassed it in active development.

Setting it up well

The defaults of any of the modern managers are fine. Three things you should still configure once.

Pick a hotkey that does not collide. Default is usually V (which Apple's own paste-and-match-style sometimes uses) or C. Either works. If you write code, V is unused by most editors.

Configure exclusions. Add 1Password, Bitwarden, your bank's app, your authenticator app, and your terminal if you frequently paste credentials there. Most modern managers have a default list; review it and add your specific tools.

Set a reasonable history depth. The default tends to be 100 to 200 items. If you copy heavily, bump it up. If you copy lightly, bump it down so search stays fast. Most managers keep history files small (text is cheap; images are larger but most managers compress).

Privacy considerations

A clipboard manager sees everything you copy. The OS does not (and cannot) tell the difference between a normal copy and a sensitive one. So the trust model around the manager matters.

What you actually want to know:

Where the data lives. Local-only managers (Maccy, teenyclip, the launcher built-ins) keep everything on the machine. Pastebot and Paste use iCloud sync if you turn it on, which puts the data through Apple's servers. None of the apps in this list send anything to the developer's own servers without explicit opt-in.

Whether you can pause monitoring. Pastebot has an explicit Private Mode toggle. teenyclip handles this through automatic frontmost-app detection (if 1Password is in front, monitoring is paused). Maccy ignores by app pattern.

Whether the manager can be cleared. All of them have a "clear history" option. Use it before you screen-share or hand the laptop to someone, just in case.

If privacy is the deciding factor, start with the deeper Mac clipboard manager privacy guide. It covers what gets saved, which apps to exclude, and how to pick a history limit before you trust any clipboard tool.

The simple version: a clipboard manager is no more or less private than the apps you give Accessibility permission to. If you trust the developer enough to install their menu bar utility, the clipboard data is fine. If you do not trust the developer, do not install their app.

Common questions

Will the clipboard manager survive a restart?

Yes. All the apps in this article persist history to disk and reload on launch. You can clear history any time.

Does it record passwords I copy?

By default, only if your password manager is not in the exclusion list. Add 1Password, Bitwarden, Dashlane, or whatever you use. Most modern clipboard managers ship with these in the default exclude list.

Can I copy from iPhone and paste on Mac?

That is Apple's Universal Clipboard, built into iCloud, separate from clipboard history. Universal Clipboard syncs the most recent copy across devices, but is still one item deep. For multi-item sync across Mac and iOS, you need Paste or Pastebot.

Can I exclude images?

Some managers let you exclude content types entirely (text only, no images). Useful if you do design work and copy a lot of large images you never need pasted from history.

Will it slow down my Mac?

No. Polling NSPasteboard a few times per second is essentially free. Memory footprint is also small unless you store thousands of large images, in which case the disk is the limit, not RAM.

What about copying files?

Most modern managers handle file copies as path references. Drag a file onto the popup, paste it elsewhere with the same drag-paste affordance. If the original file is deleted, the reference becomes stale; the manager will tell you.

The bottom line

If you have never used a Mac clipboard manager, install Maccy and try it for a week. If after that week you find yourself wanting image previews, pinned snippets with their own shortcuts, or automatic exclusion of password managers, teenyclip is $4.99 once. If you want maximum capability and can absorb the learning curve, Pastebot is $19.99 once. If you want sync across iPhone and Mac, Paste is $14.99 a year.

The wrong move is paying for a clipboard manager before knowing what you would use it for. Free comes first, paid comes when you find a specific gap.

Image previews. Pinned clips with ⌘1 through ⌘9. App exclusion built in.

teenyclip is $4.99 once. Native Swift, lifetime, 3-day free trial.