#The short answer
Yes, the Mac has a clipboard. It is a system service called the pasteboard, it holds one item at a time, and macOS ships almost no user interface for it. When someone asks does mac have a clipboard, they are usually not asking whether copy and paste works. They are asking where the thing they copied went, and why there is no window listing the last twenty items the way Windows has one.
That second part is the real answer, and it is worth saying plainly before anything else: stock macOS has no clipboard history at all. Not hidden in System Settings, not behind a modifier key, not in a Terminal command. As of macOS 26 (Tahoe) the clipboard is still one item deep. If you copied something twenty minutes ago and copied something else since, the old item is gone and nothing on your Mac can bring it back.
The rest of this page covers the parts that are actually useful: the one window Apple did build, the command line view of the same data, why the history gap exists and how Apple’s privacy rules around the pasteboard shape it, the handful of clipboard tricks macOS does ship that most people never find, and what to install if one slot is not enough.
| Capability | Stock macOS | Windows 11 | Mac + clipboard manager |
|---|---|---|---|
| Copy and paste | Yes | Yes | Yes |
| See current clipboard | Finder, Edit, Show Clipboard | Only inside history | Yes |
| Clipboard history | None | Win+V, 25 items | Yes, app dependent |
| Search past clips | None | Scroll only | Usually |
| Pin an item | None | Yes | Usually |
| Sync across devices | Universal Clipboard, current item only | Optional, via account | App dependent |
Behaviour checked against macOS 26 (Tahoe). Windows figures are from Microsoft’s published clipboard history documentation.
#Where the clipboard actually lives
There is exactly one place in the macOS interface where you can look at the clipboard, and it is easy to miss because it belongs to Finder rather than to the system as a whole.
Click the desktop or any Finder window so that Finder is the frontmost app. The menu bar changes to Finder’s menus. Open Edit, and the last item is Show Clipboard. A small floating window opens titled Clipboard, showing whatever you copied last: the text, the image, the file name. Copy something else and the window updates live.
That window is the whole feature. You cannot edit its contents, you cannot search it, and there is no back button. It is a viewer for a single value. I keep it open sometimes when I am debugging what an app actually put on the pasteboard, because it will show you the difference between styled text and plain text in a way the destination app will not.
The same thing from Terminal
If you live in a shell, the clipboard has a much better interface. Two commands have shipped with macOS for years:
# print the current clipboard to stdout pbpaste # put something on the clipboard echo "hello" | pbcopy # force plain text, dropping any RTF or HTML flavour pbpaste -Prefer txt # macOS keeps several named pasteboards, not just one # this is the buffer behind Cmd+E and Cmd+G in find fields pbpaste -pboard find
That last one surprises people. The general clipboard is only the most visible of several named pasteboards macOS maintains. There is a separate one for find text, one for drag operations, one for fonts and one for ruler settings. They do not interfere with each other, which is why copying a paragraph never wipes out the phrase you were searching for.
Underneath, all of this is NSPasteboard. Any app can read the general pasteboard, write to it, and watch its changeCount tick up to know something new arrived. That polling loop is, quite literally, how every clipboard manager on the Mac works. There is no push notification for clipboard changes, so managers check the counter on a timer. If you want the mechanics of copy and paste itself rather than the storage behind it, I wrote those up separately in how to copy on a Mac.
#Why macOS never gave it a history
The missing history looks like an oversight. I think it is closer to a decision, and understanding why changes how you should pick a replacement.
The general pasteboard is shared, and historically any running app could read it without asking you first and without leaving a trace. That is fine for a value that lives for thirty seconds. It is much less fine for a durable, searchable log of everything you have copied all week, because that log will contain passwords, one-time codes, API tokens, private keys, addresses and half-written messages. Apple keeping the clipboard volatile and one item deep means there is no such log to steal.
Apple has tightened this further over recent releases. Since macOS Sequoia, an app that programmatically reads a clipboard it did not itself write can trigger a permission prompt asking whether you want to allow it. A paste you perform yourself with Command V never prompts, because the system knows you initiated it. The prompt exists for the silent background reads.
There is also a community convention that predates Apple’s prompt, documented at nspasteboard.org. Apps that copy sensitive values can mark them with a concealed type, and well-behaved clipboard managers agree not to record anything carrying that marker. Password managers use it. It is voluntary, not enforced by the OS, which is exactly why the question “does this manager respect concealed type” belongs on your checklist later in this page.
One more quirk worth knowing, because it bites people who assume the clipboard is a simple copy of the data. Apps are allowed to put a promise on the pasteboard instead of the bytes: a note saying “I can supply a PNG if anyone asks.” The bytes are only produced when a paste happens. Quit the source app before pasting and, depending on how carefully that app hands off on termination, the clip can evaporate. If you have ever copied an image, closed the app, and found the paste target empty, that is what happened.
#The clipboard tricks macOS does ship
No history, but the built-in clipboard is not as bare as it first looks. These are the pieces I use often enough that I would miss them.
- Universal Clipboard. Copy on your Mac, paste on your iPhone or iPad, or the reverse. It needs Handoff switched on, Bluetooth and Wi-Fi active, the devices signed into the same Apple Account and physically near each other. It carries the current item only, so it extends the clipboard sideways across devices rather than backwards through time.
- A second buffer hiding in every text field. In any standard Cocoa text view, Control K cuts from the cursor to the end of the line into a separate kill buffer, and Control Y pastes it back. It does not touch the main clipboard at all, which makes it a genuine second slot for shuffling a line around without losing what you copied. This is inherited from Emacs key bindings and it works in Mail, Notes, TextEdit and most native apps.
- Screenshots straight to the clipboard. Adding Control to any screenshot shortcut sends the capture to the clipboard instead of writing a file to the desktop. Command Control Shift 4 for a region is the one worth memorising.
- Paste and match style. Command Option Shift V strips the source formatting and pastes plain text. In some apps it is Command Shift V instead. This is the fix for pasting a web quote into a document and watching it arrive in the wrong font at the wrong size.
- Shortcuts. The Shortcuts app has Copy to Clipboard and Get Clipboard actions, and the copy action can be set to expire after a chosen interval or to stay local to the Mac rather than syncing. Useful for a shortcut that generates something sensitive.
None of that adds up to history. It is worth knowing anyway, because a couple of the problems people try to solve with a clipboard manager, mainly formatting getting pasted along with text, are solved by a keyboard shortcut that is already on the machine.
#How to get clipboard history on a Mac
The only route is a third-party app. Every one of them works the same way underneath: sit in the background, watch the pasteboard’s change counter, and save a copy of each new item into a local store. One consequence matters more than any feature comparison. A clipboard manager records from the moment you install it. It cannot recover something you copied yesterday. If you landed here because you lost a clip, nothing in this section will get it back, and installing a manager today is purely insurance for tomorrow.
The category splits into four rough shapes:
- Dedicated menu bar managers. A menu bar icon and a keyboard shortcut that opens a searchable list. Maccy is the well-known free and open source option, small, keyboard-first and available to compile yourself. Paste sits at the other end: a paid app with a large visual card view and sync across Apple devices. ClipBook and CopyClip are further options in the same shape. Prices and licence models change, so check the current terms on each vendor’s own site rather than on a blog post.
- Launchers with history built in. If you already run Raycast or Alfred, both include clipboard history as part of the app. Turning on a feature you have already installed beats adding a second background process, and this is the first thing I would check before downloading anything new.
- Notch apps. A newer shape that puts the history in the space around the MacBook camera cutout rather than in the menu bar. That is the category I build in, and I come back to it at the end.
- Roll your own. A shell script polling pbpaste into a text file is about ten lines and genuinely works for plain text. It handles images and files badly, so treat it as a stopgap.
One practical side effect of the menu bar route: every manager adds another icon up there, and the notch on modern MacBooks eats the middle of the bar, so icons start disappearing off the left edge sooner than you expect. I went through how that space is allocated in the Mac menu bar explainer, and if yours is already overflowing, hiding menu bar icons covers the fixes. For a broader tour of how the clipboard behaves in daily use rather than how it is built, see the Mac clipboard guide.
#What to check before you install one
You are about to give a background process a permanent record of everything you copy. That deserves five minutes of reading before you click download. This is the checklist I apply, in the order I apply it.
- Where does the history live, and is it encrypted? Most managers keep a local database. Some encrypt it, some do not. If it is plain, anything with read access to your home folder can read your clipboard history.
- Does it respect the concealed type marker? This is the difference between your password manager’s output being skipped and being written to disk in the clear. Good managers say so in their documentation.
- Can you exclude apps? An app-level blocklist, so nothing copied inside your password manager or your banking site is ever recorded, is the safety net for when the concealed marker is missing.
- Is sync opt-in and off by default? Cross-device sync is genuinely useful and it also means your clips leave the machine. Whichever you choose, choose it deliberately.
- What is the retention limit? Managers cap history at a fixed number of items, or by age, or not at all. Unlimited sounds better until you consider point one.
- Is it keyboard driven? A clipboard manager you have to reach for with the mouse will not get used. The good ones are a shortcut, a few typed characters and Return.
- How is it distributed? Prefer notarized builds from the developer’s own site or the Mac App Store, or open source you can read. This is a category where the trust bar should be high.
Nothing on that list is exotic. It is the same due diligence you would apply to a keyboard logger, because functionally that is a fair description of what a clipboard manager is.
#Where NotchBay fits
Mine, so weigh it accordingly. I build NotchBay, and one of the things it does is put a clipboard tray in the space around the MacBook notch instead of in the menu bar. The tray holds the last 60 clips, auto-sorted by type into text, links, colors, images and files. Screenshots are run through OCR so the text inside them is searchable. Pinned clips never expire.
The limits, stated up front because they will decide it for some people. NotchBay needs macOS 26 (Tahoe) or later and a MacBook with a notch: the island only renders on a notched display, so nothing appears on an Intel MacBook or an external monitor. The tray is 60 clips plus whatever you pin, not an unlimited archive. If you want a searchable record going back months, a dedicated manager is the better tool and I would say so to your face.
On the privacy checklist above: clips are never uploaded, there is no account to create, and the app sends a single anonymous install check-in carrying a random id, the app version and licence state. The clipboard tray sits alongside the rest of the app, live activities in the notch, Zoom and Google Meet call controls, on-device dictation via Apple’s SpeechAnalyzer, and per-app skins that change the island with the frontmost app. It is signed with an Apple Developer ID and notarized by Apple.
If you want to see how it compares to another paid notch app rather than to a dedicated clipboard manager, NotchBay vs Alcove is the closest head-to-head on this site.
#Frequently asked questions
Where do I find my clipboard on my Mac?
Click the desktop or a Finder window so Finder is the frontmost app, then choose Edit and Show Clipboard. A small window opens showing whatever you copied last. It is read only: you cannot edit it, search it or scroll back through earlier copies. From Terminal, the equivalent is pbpaste, which prints the current clipboard to standard output.
How can I see my Clipboard history on my Mac?
You cannot with stock macOS. There is no built-in history at all, only the single current item shown by Finder’s Show Clipboard window. Seeing earlier copies requires a third-party clipboard manager such as Maccy, Paste, ClipBook or CopyClip, or a launcher like Raycast or Alfred that includes clipboard history. Install one and it starts recording from that moment forward, never retroactively.
Does macOS have Clipboard history like Windows?
No. Windows has a built-in clipboard history you open with Windows key plus V, holding up to 25 recent items. macOS has no equivalent and no keyboard shortcut that opens a list. As of macOS 26 (Tahoe), the Mac clipboard is still one item deep. The gap is why the Mac clipboard manager category exists at all.
How do I clear the clipboard on a Mac?
Copy something harmless over it. Selecting a single space and pressing Command C replaces the previous contents, and in Terminal the equivalent is echo -n | pbcopy. Restarting the Mac also clears it, since the clipboard is held in memory and does not survive a reboot. If you use a clipboard manager, clearing the system clipboard does not clear the manager’s history; delete the entry inside the manager too.
Can other apps read what I copied?
Historically yes, silently, because the general pasteboard is a shared system service. Recent macOS releases narrowed this: since Sequoia, an app that programmatically reads a clipboard it did not write can trigger a permission prompt. A paste you perform yourself with Command V never prompts. Apps can also mark sensitive clips with a concealed type so that well-behaved clipboard managers skip recording them, though that convention is voluntary rather than enforced by the system.