Swift CLI tools connecting Claude Code to native macOS apps like Reminders and Calendar.
Claude Apple Bridges consists of dedicated Swift CLI utilities that expose Apple ecosystem data and actions to Claude Code sessions. The package bundles individual bridges for each supported app along with a skill that registers the full command set for easy reference.
Each bridge translates Claude requests into direct calls against the corresponding macOS framework, supporting operations such as listing items, creating entries, updating dates, and searching content. Setup requires building the Swift binaries and loading the skill into a Claude Code environment.
The tools target macOS users who already work with Claude Code for daily productivity and want reliable, native access to their existing Apple apps without leaving the conversation.
Ask Claude to review open reminders, mark completed items, or add new ones with due dates pulled from your existing lists.
Query upcoming events, locate free time slots, and create new calendar entries directly through Claude without opening the Calendar app.
Retrieve phone numbers, emails, or full contact details and add new entries by describing the information to Claude.
# Dump the raw message source (RFC822, includes HTML body + MIME attachments)
mail-bridge read 42 INBOX work@company.com --raw > /tmp/mail.eml
# Then parse with Python to save any PDF attachment
python3 <<'EOF'
import email
raw = open('/tmp/mail.eml').read().split('\n---\n', 1)[1]
msg = email.message_from_string(raw)
for part in msg.walk():
fn = part.get_filename() or ''
if fn.endswith('.pdf'):
open(f'/tmp/{fn}', 'wb').write(part.get_payload(decode=True))
print('Saved', fn)
EOFNo, the bridges rely on macOS-specific frameworks and are restricted to macOS 13 and later.
Verified reviews from the community shape this listing's rating.
Loading reviews…