#The short answer
To access the clipboard on a Mac: click the desktop so Finder is frontmost, open the Edit menu and choose Show Clipboard. A small window opens with the last thing you copied. On macOS 26 (Tahoe), press Command-Space and pick Clipboard in Spotlight to see a short history of recent items instead of just the current one.
If you searched how to access clipboard in mac and expected something like the Windows history panel, the honest answer is that macOS has never had one and still mostly does not. The Mac clipboard is a single slot. You copy, the slot is overwritten, and the previous contents are discarded with no undo. That is the design, not a bug, and it is why an entire category of small Mac utilities exists.
| Method | What it shows | Works on | Main limit |
|---|---|---|---|
| Finder › Show Clipboard | The current item, live | Every macOS version | One item, read-only, no history |
| Spotlight clipboard | Recent items, rolling window | macOS 26 (Tahoe) | Short retention, clears on restart |
| pbpaste in Terminal | Current item as text | Every macOS version | Text-oriented, no history |
| Clipboard manager app | Long history, searchable | Every macOS version | Third-party, needs its own permissions |
Verified on macOS 26 as of September 2026. Apple changes Spotlight behavior between point releases, so treat the retention window as approximate.
#Finder’s clipboard viewer
This is the oldest answer and the one most people never find, because it lives in a menu nobody opens. The Edit menu belongs to whichever app is frontmost, and Show Clipboard only exists in Finder’s copy of it. So the step people skip is the first one.
- Click the desktop, or click any Finder window, so Finder is the active app. Check the app name next to the Apple logo in the menu bar.
- Open the Edit menu.
- Choose Show Clipboard.
A window titled Clipboard opens with the contents of what you last copied. It is genuinely live: leave it open on a second display or a corner of the screen, copy something in another app, and the window redraws. That makes it a decent debugging tool when a paste keeps arriving wrong and you want to see what is really in the slot.
What you see depends on what you copied. Plain text arrives as plain text. Rich text keeps its formatting, which is the fastest way to confirm that a paste is carrying styles you do not want. Copy an image and you see the image. Copy files in Finder and the window shows the file names, because a file copy puts references on the clipboard rather than the bytes.
The limits are severe and worth stating flatly. You cannot edit it, you cannot copy back out of it, and you cannot scroll back to the previous item, because there is no previous item to scroll to. It is a window onto one slot. If you copied over the thing you needed five minutes ago, this window will not help you, and neither will anything else built into macOS 15 or earlier.
#Clipboard history in Spotlight (macOS 26)
macOS 26 (Tahoe) is the first release where Apple keeps a short record of what you copied. It lives in Spotlight, alongside the app launcher and the new action list, and it is the closest thing the Mac has to the history panel Windows users are asking about.
- Press Command-Space to open Spotlight.
- Pick Clipboard from the row of category icons at the bottom of the window, or just type the word clipboard and select the result.
- Scroll or type to filter. Press Return on an item to paste it into whatever app you came from.
The list is genuinely useful for the thing it is designed for: you copied three snippets in a row and want the second one back. It handles text and links well, and each entry shows which app it came from, which turns out to matter more than I expected when a dozen near-identical strings are stacked up.
Two limits define it. First, retention is short. Apple keeps a rolling window of roughly the last eight hours, and the history does not survive a restart, so it is a working buffer rather than an archive. Second, it deliberately skips some things. Password managers and other apps that handle secrets mark what they put on the clipboard as concealed, and anything marked that way stays out of the history. That is the correct behavior, and it is a good reason not to treat any clipboard history as a place to look for a password you copied earlier.
If you do not see the Clipboard category at all, check that you are actually on macOS 26 (Apple menu, About This Mac) and look through Spotlight’s settings in System Settings, since Apple has moved these controls between point releases. On anything older there is nothing to enable. The feature simply does not exist.
#The Terminal route: pbpaste and pbcopy
If you already have a terminal open, this is the fastest way to look at the clipboard, and it is the only method that tells you what the clipboard really contains rather than a rendered version of it.
# print the clipboard as text pbpaste # force plain text, dropping any rich formatting pbpaste -Prefer txt # send something the other way echo "hello" | pbcopy # save whatever is on the clipboard to a file pbpaste > ~/Desktop/clip.txt # list every data type the clipboard is currently carrying osascript -e 'the clipboard as record'
That last command is the one worth remembering. A single copy usually puts several representations on the clipboard at once: plain text, RTF, HTML, sometimes a private type belonging to the app you copied from. Apps pick the richest one they understand when you paste, which is exactly why pasting from a browser into a document drags styling along with it. Seeing the list makes the behavior obvious instead of mysterious. If pasting the wrong flavor is your actual problem, the shortcuts in copying and pasting on a Mac cover paste-and-match-style and the rest of the modifier combinations.
These commands read the general pasteboard, the same one every app uses. There is no history here either. pbpaste gives you the current item and nothing else, which is a fair summary of the whole built-in story.
#What the Mac clipboard actually is
Underneath, the clipboard is an object called the general pasteboard, shared by every running app. When you copy, the app writes one or more typed representations into it and the system bumps a counter called the change count. When you paste, the receiving app asks for the best type it can handle and reads that.
Three consequences fall out of that design, and they explain most of the confusion around this topic:
- There is no stack, so there is nothing to browse. A write replaces the previous contents. The system does not keep the old value anywhere, which is why no menu can offer it to you.
- The clipboard is not one thing, it is a bag of formats. The same copy can be text, styled text and an image at once. Apps disagree about which to prefer, and that disagreement is what you feel as a bad paste.
- History has to be built on polling. macOS does not broadcast a notification when the clipboard changes. Any app that offers history, Apple’s included, has to watch that change count on a timer and archive each new value as it appears. I wrote NotchBay’s clipboard capture exactly that way, and it is why every clipboard manager on the platform behaves subtly the same.
The polling detail also answers a question people ask about privacy. An app that keeps clipboard history is, by construction, reading everything you copy. That is not sinister, it is the only way the feature can work, but it does mean the app you pick should be one you are willing to hand that stream to. Prefer software that stores clips locally and honors the concealed-type convention that password managers use. There is more on the mechanics and the trade-offs in my longer write-up on how the Mac clipboard works.
#When the built-in tools are not enough
Be honest with yourself about which problem you have. If you just want to check what is in the slot right now, Finder’s viewer or pbpaste is the whole answer and you should install nothing. If you regularly need something you copied yesterday, or you want to search inside old clips, no built-in tool reaches that far and a clipboard manager is the fix.
The names worth knowing, each in one fair line:
- Maccy: free and open source, small, keyboard-driven, does one job. The first thing I recommend to anyone who is not sure they want to spend money. I looked at it closely in the Maccy review.
- Paste: the polished commercial option, with a full-width shelf, pinboards and syncing across devices. Covered in the Paste write-up.
- Raycast and Alfred: launchers that include clipboard history as one feature among many. If you already run one, you may already have a history and not know it.
Whichever route you take, check two things before you commit. Does it store clips locally, or does it sync them somewhere? And can you exclude specific apps, so that your password manager and your banking site never enter the history at all? Those two answers matter more than the feature count. A related trade-off is screen real estate, since most of these apps park a permanent icon in your menu bar, and my notes on what belongs in the Mac menu bar cover how quickly that space runs out.
#Where NotchBay fits
Mine, so discount the enthusiasm accordingly. I built NotchBay because I did not want a menu bar icon or a separate window for this: I wanted the clipboard to live in the notch, where my eyes already are. The tray holds the last 60 clips, auto-sorted by type into text, links, colors, images and files, and screenshots are run through OCR so the text inside them is searchable. Pinned clips never expire.
The privacy posture is the part I care most about. There is no account. Clips are never uploaded. The app sends one anonymous install check-in with a random id, the app version and license state, and nothing else. Everything else stays on the Mac.
The limits, stated plainly because every app in this space has them: NotchBay requires macOS 26 (Tahoe) or later and a MacBook with a notch. Nothing renders on an Intel MacBook or on an external monitor. The tray holds 60 clips plus whatever you pin, so it is a working buffer, not an unlimited archive. If you need a searchable record going back weeks, a dedicated clipboard manager is the better tool and I would rather you used one. Other notch apps exist too, including NotchNook, Alcove, DynamicLake, boring.notch, TopNotch and Atoll, and if you are weighing them, NotchBay compared with Alcove is the fairest starting point I have written.
#Frequently asked questions
How do I access my clipboard history on a Mac?
On macOS 26 (Tahoe), open Spotlight with Command-Space and choose Clipboard from the row of category icons, or type the word clipboard. That list holds a rolling window of recent items, roughly the last eight hours, and it does not survive a restart. On macOS 15 and earlier there is no clipboard history at all: the system keeps one item, and anything older is gone. A third-party clipboard manager is the only way to get a longer record on those versions.
How do I go into the clipboard on a Mac?
Click the desktop or a Finder window so Finder is frontmost, then open the Edit menu and choose Show Clipboard. A small window appears with whatever you copied last. It is read-only, it shows exactly one item, and it updates live as you copy, so you can leave it open while you work.
How do I view my clipboard without opening an app?
Open Terminal and run pbpaste. It prints the text contents of the general pasteboard to the terminal. Add pbpaste -Prefer txt to force plain text, or run osascript -e 'the clipboard as record' to list every data type the clipboard is currently carrying, which is useful when a paste arrives with formatting you did not want.
Is there a keyboard shortcut to open the clipboard on Mac?
Not a dedicated system one. macOS has no equivalent of Windows Command-V history panel bound out of the box. The closest built-in path is Command-Space for Spotlight followed by the Clipboard category on macOS 26. Every clipboard manager ships its own global shortcut instead, and that is the usual reason people install one.