#Does macOS keep a clipboard history?
Since macOS 26 (Tahoe), yes, but only for about eight hours, and only inside Spotlight. On every earlier version of macOS the answer is no: the system pasteboard holds exactly one item, and copying something replaces what was there. That single sentence resolves most of the confusion in those threads, because half of them predate Tahoe and half do not.
The reason it looks like a gap is that the Mac has worked this way since the first Mac. There is one general pasteboard. Copy a paragraph, then copy a URL, and the paragraph is gone. Nothing warns you. You can confirm it yourself in Terminal: pbpaste prints the current clipboard and there is no flag that prints the previous one, because there is no previous one to print. If you want the full mechanics of copy and paste on the Mac, including what actually travels between apps, I wrote that up separately in how to copy on Mac.
So people install a manager. That has been the standard answer on r/macapps and r/mac for years, which is why a search for clipboard history mac reddit returns app recommendations rather than a system setting. It is still the right answer for most people even after Tahoe, for reasons that come down to one number.
#What macOS 26 added, and what it misses
Spotlight in macOS 26 gained a clipboard section. Press Command and Space, switch to it, and you get a list of recent copies you can filter by typing. It handles text and images, it is on by default, and it costs nothing because it is already on your Mac. For a lot of people that genuinely closes the case. The most common real-world need is "I copied over the thing I needed two minutes ago", and eight hours covers two minutes comfortably.
The limits are worth naming plainly, because this is where the newer Reddit threads land. There is no pinning, so you cannot park a snippet you use every day. There is no organisation by type beyond what the list shows you. There is no sync of the history to your iPhone. And eight hours is a workday, which means the thing you copied on Monday is gone on Tuesday. If your use case is "keep my three standard replies and my SSH key comment permanently available", the built-in history is not that tool and was not built to be.
There is also a discovery problem. Nothing in the Edit menu points at it, nothing in Finder does, and the Mac gives you no indication that a history exists at all. I have watched people search for clipboard history on a Mac that already had it. If Apple's feature is all you need, the one thing worth doing today is opening Spotlight and finding the section once, so you know where it is when you need it in a hurry.
#The apps Reddit keeps naming
Read enough of these threads and the same five or six names carry almost all the votes. Here is the honest shape of each. Prices and tiers change, so confirm on the vendor's own page before you buy anything.
| Tool | Cost | Shape of it |
|---|---|---|
| Spotlight (built in) | Free with macOS 26 | About 8 hours, no pinning, nothing to install |
| Maccy | Free from GitHub, paid on the App Store | Open source, keyboard first, deliberately small |
| Raycast | Free tier plus paid Pro; see raycast.com | History inside the launcher you already open |
| Alfred | Paid Powerpack; see alfredapp.com | Configurable retention, snippets, workflows |
| Paste | Subscription; see pasteapp.io | Visual shelf, pinboards, sync across devices |
| Pastebot | Paid; see tapbots.com | Filters that transform text as you paste it |
| Flycut | Free, open source | Plain text only, tiny, Jumpcut descendant |
Positioning verified from each vendor's own site, September 2026. Pricing tiers move; check before purchase.
Maccy is the default recommendation in most threads, and it deserves it. It is open source, it is free if you build or download it from GitHub, and its scope is narrow on purpose: a searchable list, a hotkey, pinning, and not much else. The paid App Store listing is the same app with the developer's convenience premium attached. I covered how it behaves day to day in the Maccy write-up.
Raycast and Alfred win the threads where someone already uses a launcher. That is the real argument for them, and it is a good one: you are not adding a tool, you are turning on a feature in a tool you already reach for fifty times a day. The muscle memory is free. If you have neither, installing a whole launcher to get clipboard history is a large answer to a small question.
Paste is the one people either love or bounce off over pricing. It is the most designed option: a horizontal shelf of cards, pinboards for grouped snippets, sync across your Apple devices. The subscription is what generates the arguments, not the app. My longer look at it is in the Paste review.
Pastebot is the one power users bring up late in a thread, usually about filters: rules that clean up what you paste, stripping formatting or rewriting text on the way out. If you paste from a browser into a code editor all day, that is not a gimmick.
What no thread will tell you is which one is best, because the question is underspecified. The split follows what people already run. That is why the same thread gets six answers and every one of them is correct for the person giving it.
#How to choose, in five questions
Answer these before you read another comparison table. They narrow the field faster than any feature list.
- How far back do you actually reach? Be honest. If your longest reach is "earlier this morning", macOS 26 already has you covered and you can stop here. If you regularly want something from last week, you need a manager with real retention.
- Do you need pinning? A permanent snippet, an address, a signature block, a licence key. Pinning is the single feature that separates a history from a small personal library, and the built-in Spotlight history does not have it.
- Do you copy images and files, or only text? Flycut is text only. Most of the others handle images. If you copy screenshots constantly, ask specifically whether the tool can find text inside them.
- Keyboard or pointer? Maccy, Raycast and Alfred assume you want a hotkey and a fuzzy search field. Paste assumes you want to look at a shelf and pick. Neither is wrong, but picking against your own habit is why people abandon these apps in week two.
- What happens on a second Mac, or your iPhone? Sync is a paid feature almost everywhere it exists. If you only work on one machine, do not pay for it.
One more that people skip: where does the history appear on screen. A clipboard panel that opens in the centre of your display interrupts you in a way a strip at the top edge does not. That sounds like a small thing until you use both for a week.
#How a clipboard manager actually works
Worth understanding, because it explains both the battery questions and the privacy ones that come up in every thread.
macOS exposes the pasteboard through NSPasteboard. The general pasteboard has a counter called changeCount that increments every single time anything writes to it. A clipboard manager does not hook your Command and C keystroke and does not watch your keyboard. It reads that counter on a timer, notices when the number moved, and copies out whatever is now sitting there. That is the whole trick, and it is the same trick in every one of these apps, mine included.
Two consequences follow. First, polling a single integer a few times a second is close to free, so a well-built manager should not show up as an energy hog. If one does, that is an implementation problem, not a category problem, and Activity Monitor's Energy tab will tell you within a day. Second, a manager cannot know which app you copied from unless it asks separately, and it captures everything, including things you did not mean to keep.
That second point is why the pasteboard has an informal opt-out. Apps that put sensitive data on the clipboard can mark it with types like org.nspasteboard.ConcealedType or NSPasteboardTypeTransient, which is the convention password managers use to say "do not record this". Every serious clipboard manager honours it. When I built the capture pipeline for NotchBay's tray I had to implement the same check, and it is the first thing I would verify about any manager you are considering: copy a password out of your password manager, open the history, and confirm it is not there.
#The part nobody enjoys thinking about
A clipboard history is a log of everything you copied. Over a month that is a fairly complete record of what you worked on, who you emailed, what you looked up and, if the concealed-type check fails anywhere, credentials. This is worth a minute of thought before you install anything, and it is the one topic those Reddit threads consistently underweight.
Three practical rules I would give anyone:
- Prefer local storage. If a history syncs, it is leaving your Mac. That may be exactly what you want across your own devices, but you should know it is happening and where it lands.
- Cap the retention deliberately. Unlimited history sounds generous and is mostly a liability. A bounded list plus pinning gives you the same practical benefit with a much shorter tail.
- Test the password exclusion yourself. Do not take a feature page's word for it. Copy, look, confirm.
If you also care about what your clipboard does between apps and between devices, Universal Clipboard included, the general behaviour is covered in how the Mac clipboard works.
#Where the history lives matters
Almost every option above puts the history in one of two places: a panel in the middle of the screen, or a menu bar icon. Both work. Both also have a cost, and the menu bar one compounds, because clipboard managers are usually not the only utility asking for a slot up there. If your menu bar is already full, that is a real constraint and there are ways to manage it, which I went through in hiding menu bar icons on the Mac and in the broader menu bar guide.
Here is where I declare the bias: I build NotchBay, a notch app for the Mac, and its clipboard tray is my answer to that question. It puts the history in the space around the MacBook's camera notch instead of the middle of the screen or another menu bar icon. The tray keeps the last 60 clips, sorted automatically by type into text, links, colors, images and files. Screenshots are run through OCR, so text inside an image is searchable, which is the feature I use most. Pinned clips never expire. Everything stays on the Mac: no account, no upload of your clips.
The honest limits, and they are strict. NotchBay needs macOS 26 (Tahoe) or later, and it needs a MacBook with a notch. On an Intel MacBook or an external monitor, nothing renders at all. Sixty clips plus pinned items is a working set, not an archive. If you want a searchable record going back months, Maccy or Alfred is straightforwardly the better fit and I would tell you that before you paid me anything. NotchBay is $19 one time with a 3-day trial, signed with an Apple Developer ID and notarized by Apple, and it is not on the Mac App Store.
If the notch angle interests you beyond the clipboard, the comparison with Alcove and the one with NotchNook lay out where each app in that category places its bets.
#Frequently asked questions
Can I see past clipboard history on my Mac?
On macOS 26 (Tahoe) and later, yes, for a limited window: Spotlight has a clipboard section that shows what you copied in roughly the last eight hours. Before macOS 26 there was nothing to see, because the system pasteboard only ever holds one item at a time. For anything older than that window you need a clipboard manager such as Maccy, Raycast, Alfred, Paste or Pastebot.
How do I view my clipboard history?
Open Spotlight with Command and Space, then switch to its clipboard section and scroll or type to filter. If you have installed a clipboard manager instead, it will have its own hotkey: Maccy defaults to Shift Command C, Raycast and Alfred both expose a clipboard history command, and most menu bar managers also open from their icon.
Does Apple have a clipboard history?
Apple added one in macOS 26 (Tahoe) as part of Spotlight. It is deliberately small: a short rolling window of recent copies, no pinning, no folders, no sync of the history to iPhone. Apple did not add a clipboard history to the Edit menu or to Finder, so the Spotlight panel is the only built-in place to look.
Is clipboard history stored permanently?
That depends entirely on the tool. Spotlight's built-in history expires after about eight hours. Third-party managers vary: some keep a fixed number of recent clips, some keep everything until you clear it, and most let you pin individual items so they survive. Check the retention setting before you trust anything important to it, and remember that a long history is also a long record of everything you copied.
Which clipboard manager does Reddit recommend most?
Across r/macapps, r/mac and r/MacOS the same names keep coming back: Maccy for people who want free and open source, Raycast or Alfred for people who already live in a launcher, and Paste or Pastebot for people who want a designed, visual history and will pay for it. There is no single winner in those threads, and the split follows what people already have installed.