Guides··9 min read

How to Access Clipboard in Mac: 4 Built-In Ways, 2026

There is no clipboard panel in macOS the way there is on Windows. What you get instead is a one-item viewer buried in Finder’s Edit menu, a short history list inside Spotlight if you are on macOS 26 (Tahoe), and two Terminal commands that are faster than either. Each one shows a different slice of the same thing. This page walks all four, says exactly where each stops, and explains what the Mac clipboard actually is underneath, which is the part that makes the limits make sense.

By Deepak Yadav, building NotchBay

The short version

  • Finder’s Edit › Show Clipboard is the only built-in clipboard viewer, and it shows exactly one item: the last thing you copied.
  • macOS 26 (Tahoe) added a clipboard history inside Spotlight. It is a rolling window of recent items, not a permanent archive, and it clears when you restart.
  • On macOS 15 and earlier there is no history at all. If you copy over something, it is gone, and only a third-party clipboard manager can bring it back.

#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.

MethodWhat it showsWorks onMain limit
Finder › Show ClipboardThe current item, liveEvery macOS versionOne item, read-only, no history
Spotlight clipboardRecent items, rolling windowmacOS 26 (Tahoe)Short retention, clears on restart
pbpaste in TerminalCurrent item as textEvery macOS versionText-oriented, no history
Clipboard manager appLong history, searchableEvery macOS versionThird-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.

  1. 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.
  2. Open the Edit menu.
  3. 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.

Every macOS release since the first one has shipped exactly one clipboard slot. Copying replaces it. There is no system-wide undo for that.

#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.

  1. Press Command-Space to open Spotlight.
  2. Pick Clipboard from the row of category icons at the bottom of the window, or just type the word clipboard and select the result.
  3. 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.

NotchBay is $19 one-time (list price $39), with a 3-day free trial and no card required. No subscription. Signed with an Apple Developer ID and notarized by Apple.

#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.

Everything here was checked on a notched MacBook running macOS 26 while building NotchBay. Spot an error, especially in a competitor detail? Email hello@thedeepflux.com and the page gets corrected.
Deepak YadavCrafting beautiful digital consumer products.

Product designer and indie hacker. Founder of Ossian Design Lab. Builds and ships business and consumer digital products in public.

Follow on X

Read next.

Look up.
It's all right there.