Skip to main content
Glama
falconbradley

Apple Messages MCP

Apple Messages MCP

Read and search your iMessage, SMS, and RCS conversations from Claude, on macOS.

Companion to claude-connector-apple-mail and claude-connector-apple-reminders.

Status: reading and searching are solid. Sending works but is unproven on a live send — the scripting call is implemented and its syntax verified, but Apple has broken send before, so treat the first real send as a test. See Sending messages.

Tools

Tool

Description

get_stats

Totals, unread count, per-service breakdown (iMessage/SMS/RCS), date range

list_chats

Conversations, most recently active first, with participants and a preview

get_chat_messages

Messages in one conversation, oldest-first, paged

search_messages

Substring search over all history, filtered by chat, sender, and date range

get_message

One message in full, with attachments and delivery timestamps

get_attachment

Attachment bytes, base64-encoded

refresh_search_index

Warm or rebuild the local search index

compose_message

Open Messages with text prefilled — you press send

send_message

Send to an existing conversation; delivers immediately

Related MCP server: jons-mcp-imessage

Requirements

  • macOS 13 Ventura or later. RCS requires macOS 26 or later.

  • Full Disk Access for the Claude app — required for reading.

  • Automation permission for Messages — required for sending and for contact names. macOS prompts for this one automatically.

Granting Full Disk Access

  1. System Settings → Privacy & Security → Full Disk Access

  2. Enable Claude (add /Applications/Claude.app with + if it isn't listed)

  3. Quit and reopen Claude. macOS caches this permission at process launch, so the restart is mandatory — the extension will keep failing without it.

Why this needs Full Disk Access when Apple Mail doesn't

The Apple Mail extension talks to Mail.app entirely through scripting, so it needs no special permissions. Messages cannot work that way.

Messages' AppleScript dictionary exposes exactly four classes — account, chat, participant, file transfer — and no message class. Verified on macOS 26.5.2:

$ osascript -e 'tell application "Messages" to get every text message of first chat'
syntax error: Expected "from", etc. but found identifier. (-2741)

Chats and participants enumerate fine; message bodies are simply not exposed. So the only read path is SQLite over ~/Library/Messages/chat.db, which is TCC-protected. Unlike Automation, Full Disk Access cannot be requested programmatically — the user must grant it by hand.

The extension therefore uses both permissions for different jobs:

Concern

Mechanism

Permission

Messages, chats, search, attachments

SQLite on chat.db

Full Disk Access

Contact names for raw handles

Messages scripting

Automation

Sending

Messages scripting (send)

Automation

Compose window, prefilled

imessage: / sms: URL scheme

none

Contact names come from Messages' participant class (full name), which reads the user's Contacts card. That sidesteps the separately-protected AddressBook database — if Automation is denied, handles simply render as raw numbers.

Implementation notes

attributedBody. Since Ventura, message.text is frequently NULL and the body lives in message.attributedBody as an Apple typedstream — the legacy NSArchiver format, which plistlib cannot read. typedstream.py decodes it in pure Python, so the bundle needs no PyObjC dependency. It anchors on the NSString/NSMutableString class name and reads the length-prefixed UTF-8 payload after the + type marker. Decoding is total: an undecodable body yields None rather than failing the query.

Timestamps. message.date is Apple-epoch (2001-01-01), in seconds before macOS 13 and nanoseconds since. Both are detected and handled.

Search. chat.db ships no text index, and most bodies live only in attributedBody, where SQL cannot see them. That combination is nastier than it looks.

The first implementation widened its predicate to m.text LIKE ? OR m.attributedBody IS NOT NULL and re-filtered the decoded text in Python. Because that second clause is true for nearly every modern row, the query's LIMIT truncated the scan to the newest few hundred messages before the Python filter ever ran — so any older match silently disappeared. A search for a real message returned zero results rather than being slow. On a 916 MB history that meant search effectively covered only the last few days.

The fix is to decode once instead of per query. index.py mirrors decoded, casefolded bodies into ~/Library/Caches/apple-messages-mcp/search-index.db, which searches then join against — so the match, the filters, the ordering and the LIMIT all apply to the complete history in SQL. The mirror is:

  • Incremental. New messages are found by a message.ROWID watermark. Edits and unsends reuse an existing ROWID, so each refresh also looks at the most recent 2000 rows — but only at those with date_edited set or with both body columns now NULL, since re-decoding 2000 blobs on every search is real work that almost always finds nothing. An edit that Messages somehow did not stamp, or one older than that window, needs refresh_search_index(rebuild=True). Improving the attributedBody decoder also warrants a rebuild; bumping SCHEMA_VERSION forces one.

  • Casefolded, and only that. Display text still comes from chat.db, so the mirror is purely a matching oracle. Storing str.casefold() halves its size and makes case-insensitive matching correct for non-ASCII — SQLite's LIKE folds case for ASCII alone.

  • Disposable. It lives in ~/Library/Caches and rebuilds if deleted. Nothing here writes to chat.db.

Not FTS5, despite the earlier plan here: FTS5 matches whole tokens, so MATCH 'dentist' never finds "mydentist", which is narrower than the substring semantics search_messages documents. A substring scan over compact casefolded text is already fast, so FTS5 would have doubled the index for semantics we cannot use. Adding it later is a contained change if a query ever does drag.

Read-only and non-locking. Connections open mode=ro and no statement mutates the database. If SQLite cannot open the live WAL read-only, it falls back to a private snapshot copy so a running Messages.app is never disturbed.

Tapbacks, edits, replies. Reactions are decoded from associated_message_type (2000–2007, with the 3000-range as their removals), threaded replies from thread_originator_guid, and edits from date_edited.

Sending messages

Messages has no draft object, so there is no exact analogue of the Mail extension's draft-first design. The write path therefore comes at two levels, and they are deliberately not equivalent.

compose_message — the safe default. Opens Messages with the recipient and body prefilled via the imessage: / sms: URL scheme, and stops. A human reads it and presses send, so nothing leaves the machine on Claude's say-so. This is also the only way to start a new conversation. Needs no permission at all.

send_message — delivers immediately. Uses the scripting interface's send, and cannot be unsent. It takes a chat_id rather than a phone number, which is not a limitation but the point: the dictionary accepts either a participant or a chat, and addressing an existing chat by GUID lets Messages choose the transport (iMessage / SMS / RCS) instead of the caller guessing and silently sending an SMS to someone on iMessage. It also requires confirm=True, purely as a guard against being triggered casually.

What is verified, and what is not

Confirmed on macOS 26.5.2 — the dictionary exposes

send : direct-parameter (file | text), to: (participant | chat)

the service type enumeration is SMS, iMessage, RCS, chat has a GUID id property to address, and the generated AppleScript compiles.

Not confirmed: that a live send actually delivers. Apple has broken AppleScript send before, and its presence in the dictionary has never been proof that it works. Nothing in the test suite delivers a message, so the first real send is the experiment. If it fails, shortcuts run with a "Send Message" action is the fallback worth trying next.

Message text reaches AppleScript as an osascript argument (on run argv) rather than being interpolated into script source, so a body containing a double quote is inert rather than a syntax error or an injection.

Sending attachments is not wired up, though the file direct parameter means it is in reach.

Development

python3 tests/test_db.py       # SQL, decoder, and search-index tests
python3 tests/test_send.py     # compose URLs, send guards, argv safety
python3 tools/probe_schema.py  # verify the real chat.db (needs Full Disk Access)
./build.sh                     # test, validate manifest, pack the .mcpb

tests/test_db.py builds throwaway databases with the real schema, so the SQL can be validated without Full Disk Access or a real message history. One of them buries a match under 3000 newer messages, which is the regression test for the truncated-search bug described above.

tests/test_send.py never sends anything or opens a window: it covers the URL builder, the guard clauses, and the exact osascript argv — so it is safe anywhere, and correspondingly cannot tell you whether Apple's send works.

Neither suite touches the real search index; both inject a temporary one.

License

MIT

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables Claude to send and read iMessages on macOS, with smart contact lookup, message history retrieval, and cross-conversation search using natural language commands.
    5
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to read iMessage history and send messages on macOS. Supports conversation listing, message search with keyword and semantic modes, contact lookup, and sending messages to existing conversations.
    13
    11
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables Claude to read and search through iMessage, SMS, and RCS conversations, including mixed-protocol group chats with Android users. It decodes binary message data from the macOS Messages database to provide a comprehensive view of message history.
    19
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables Claude to send and read iMessages on macOS, with human approval required for sending and no auto-replies.
    5
    1
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.

  • MCP connector for iMessage & Contacts via a local Mac agent + Vercel relay

  • Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/falconbradley/claude-connector-apple-messages'

If you have feedback or need assistance with the MCP directory API, please join our Discord server