top of page

Apple Intelligence Meets Claude: Building the Bridge Apple Hasn't Shipped Yet

  • Writer: MacSmithAI
    MacSmithAI
  • 15 hours ago
  • 6 min read

Apple Intelligence on macOS Tahoe 26 is useful. Writing Tools rewrites text in place in any app. Mail summarizes threads. Image Playground generates stuff. And when Siri gets stumped, it hands off to ChatGPT (now GPT-5 as of Tahoe 26).

But there's no Claude anywhere in that list, and that's a problem if Claude is the model you actually want to use.


Apple is expected to fix this at WWDC 2026 in June with an "Extensions" system that lets Claude, Gemini, and other assistants plug into Siri the same way ChatGPT does today. The Tahoe 26.1 beta also has hints that Apple is building MCP support into the OS itself. But all of that is future tense. Right now, if you want Claude working alongside Apple Intelligence, you build the bridge yourself.


It's a one-afternoon project. The payoff is a single keyboard shortcut that takes whatever text you've selected, asks you what you want done with it, and fires it off to Claude — no copy-paste-switch-type dance in the middle. Below is the setup I've been running for a few months, using tools you already have: macOS Shortcuts, Claude's desktop app, and the Services menu.


Why not just use Writing Tools?

Apple's Writing Tools are good at what they do: proofread, rewrite in a different tone, summarize, make a list. Press a button, get a reasonable result. For most text manipulation, that's enough and I keep using it.


They fall apart when you need actual reasoning. "Rewrite this more concisely" is fine. "Rewrite this more concisely, keep the three technical claims in paragraphs two and four, and flag anything that overstates what the data shows" is not something Writing Tools does. That's a Claude task, and the round trip to get there — copy, switch apps, paste, write the prompt, read the response, decide what to do — kills the flow you were in.

The shortcut below collapses that round trip into one keystroke.


What you'll need

  • macOS Tahoe 26 or later (Shortcuts has been around longer, but Apple Intelligence features require this)

  • Claude desktop app installed from claude.ai/download — not the web version. The desktop app has the system integration hooks we'll use.

  • A Claude account (free works; Pro is better for heavy use)

  • An Apple Silicon Mac or M1+ if you want to use on-device Apple Intelligence features alongside Claude


Step 1: Enable Claude's Quick Entry

The foundation of everything that follows is Claude's Quick Entry feature. It's the macOS equivalent of Spotlight, but for Claude.

Open the Claude desktop app and go to Settings → General → Desktop app. Enable Quick access shortcut. You'll get two options for the trigger:

  • Double-tap Option (default) — works great but isn't a real keyboard shortcut, so you can't trigger it from Shortcuts or automation tools

  • Option + Space or a custom combo — this is what you want for the workflow below

Set it to a custom shortcut. I use ⌃⌥C (Control-Option-C) because it doesn't collide with anything else and it's one-handed on a Mac keyboard.

While you're in settings, grant the three permissions Claude needs: Screen Recording (for screenshots), Accessibility (for the Quick Entry overlay), and Speech Recognition (for Caps-Lock voice dictation). These live in System Settings → Privacy & Security.

Test it: hit your shortcut anywhere. You should get an overlay at the bottom of your screen where you can type, and a screenshot crosshair so you can optionally attach a region of your screen. Type "hello" and press Enter. Claude opens with your message already sent. Good. Now we build on top of this.


Step 2: Build the Shortcuts action

Open the Shortcuts app (it ships with macOS). Click + to create a new shortcut. Name it "Ask Claude About Selection".

The shortcut is three actions:

  1. Get the currently selected text. Search for Get Selected Text in the actions panel and drag it in. This pulls whatever is highlighted in the foreground app.

  2. Ask for the prompt. Search for Ask for Input. Set the prompt to "What should Claude do with this?" and the default answer to something sensible like "Explain this clearly." This gives you a one-line text field when the shortcut fires.

  3. Combine the instruction and the selection. Add a Text action and paste in the template below. Drag the tokens from the earlier actions into the bracketed spots. The --- separator keeps Claude from confusing your instruction with the content.

[Provided Input]

---

[Selected Text]

Then add a Copy to Clipboard action, followed by a Run AppleScript action with this:

on run {input}
    tell application "Claude" to activate
    delay 0.3
    tell application "System Events"
        keystroke "v" using command down
        delay 0.1
        keystroke return
    end tell
    return input
end run

That activates Claude, pastes the combined text into the chat field, and hits Enter. Done.


Step 3: Bind it to a keyboard shortcut

In Shortcuts, click the settings icon on your new shortcut and check Use as Quick Action and Services Menu. This makes it available system-wide.

Then go to System Settings → Keyboard → Keyboard Shortcuts → Services. Scroll to find "Ask Claude About Selection" under Text. Click the right side to assign a shortcut — I use ⌃⌥⇧C because it's adjacent to my Claude Quick Entry shortcut and easy to remember.

Test it: highlight any text in any app, press your shortcut. A prompt box appears. Type what you want Claude to do. Press Enter. Claude opens with both your instruction and the selected text, and the question is already submitted.


What this is actually for

The workflow is general-purpose, but some uses earn their keep faster than others:


Reading dense documents with a second opinion

A paragraph of legalese, academic prose, or a dense code review. Highlight, shortcut, "explain what this says, then tell me what's implied but not stated." Apple's Writing Tools would summarize it. Claude tells you what's missing, which is usually what matters.


Drafting responses while reading an email

Select the email body. Shortcut. "Draft a polite but firm response that pushes back on points 2 and 3 without burning the relationship." You get a draft in Claude, iterate on it there, copy the final version back to Mail. Apple's Writing Tools can rewrite text you've already written; this writes the first draft based on what you've read.


Analyzing a chunk of code

Select a function or a diff. Shortcut. "What edge cases is this missing?" Since Claude has a 200K context window and strong code reasoning, you can select a lot more than you'd ever paste into a chat manually.


Cross-referencing against your own writing

Select a paragraph you've written. "Is this consistent with the argument I made in the first half of this doc? Let me know if anything contradicts." This uses Claude's ability to hold both pieces in context — your selection plus whatever you follow up with — which the in-place Writing Tools can't do.


How it fits with what's already there

Once this is in place, you end up with three overlapping AI surfaces on the same Mac, and they sort out pretty naturally in day-to-day use. Apple's Writing Tools keeps winning for the single-verb stuff — proofread, shorten, make a list, rewrite professional. One keypress, done, no thinking required. The Claude shortcut is what you reach for the moment the prompt turns into a sentence instead of a verb. Siri-plus-ChatGPT still earns its keep for voice queries and quick factual lookups where you don't want to switch apps at all.

You're not picking one — you're using whichever fits the moment. That's the same theme running through the rest of this series: the AI layer is almost never the hard part, the interaction surface is. Good tooling makes switching between them cheap enough that you don't have to commit.


What's coming in June

WWDC 2026 is about six weeks out as I'm writing this, and there are two announcements on the rumor mill that would change this setup.

The first is Siri Extensions in iOS 27 / macOS 27. If Apple ships what Bloomberg is reporting, any chatbot app from the App Store will be able to plug into Siri the way ChatGPT does now. So "hey Siri, ask Claude to..." just works. That mostly eats into the voice side of this — the keyboard shortcut flow above is still going to beat voice for anything where you've already got text selected, because talking is slower than typing when your hands are already on the keyboard.


The second is bigger: native MCP support in macOS itself. The Tahoe 26.1 beta has plumbing for it, and if it ships in a production release, every Apple Intelligence feature could in principle use MCP servers. That means the Intune server from earlier in this series could one day be available to Siri and Writing Tools, not just Claude and Raycast. This is the one to watch. It'd take Apple Intelligence from a closed system with ChatGPT bolted on to an actual platform.


Neither of these has shipped. Don't plan around them. Build what works now — the Shortcuts approach above will keep working regardless of what Apple announces, and if they do deliver, you just get more options.


One shortcut if you use Raycast

If you've got Raycast installed from the earlier post in this series, you can skip most of the Shortcuts setup. Raycast's AI Commands support {selection} as a dynamic placeholder, which gets you the same highlight-hotkey-prompt-answer loop with a nicer UI and per-command model selection. The Shortcuts flow above is the free, native, no-extra-app version. If Raycast is already on your machine, use that instead.


Either way, the thing doing the work is macOS's system-wide text selection. Apple hands you that for free. Everything else is just deciding which app to hand the text off to.

Comments


bottom of page