imessage_mcp
Local MCP server for macOS Messages + Contacts: send messages, read chat history, wait for replies, and manage Contacts.app entries.
README
imessage_mcp
Local MCP server for macOS Messages + Contacts: send messages, read chat history, wait for a reply without polling manually, and look up/update Contacts.app entries.
Runs over stdio, driven directly by whatever agent/client launches it (e.g. Claude Code, Claude Desktop). Only tested on and intended for macOS.
Setup
cd imessage-mcp
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
macOS permissions
The process that actually runs this server (not your terminal, unless that's what launches it) needs, under System Settings > Privacy & Security:
- Full Disk Access — to read
~/Library/Messages/chat.dbdirectly. - Automation — to control Messages.app and Contacts.app via
osascript.
macOS prompts for these the first time each permission is needed; if a prompt doesn't appear, add the process manually in System Settings. If you're running this via Claude Code/Desktop, that's typically the app itself (or the terminal it was launched from) that needs the grant, not the Python interpreter.
Register with Claude Code
claude mcp add imessage-mcp -- bash -c "cd /Users/john/mcp/imessage-mcp && .venv/bin/python -m imessage_mcp.server"
The cd wrapper is required: this must run as python -m imessage_mcp.server
(a package, for the relative imports between modules) rather than by direct
script path, and -m only finds the package if the process's working
directory is the project root -- which isn't guaranteed to be true when
Claude Code launches it from wherever you happen to be working.
Use -s user instead of the default local scope if you want it available
across all projects, not just this directory.
Tools
| Tool | What it does |
|---|---|
imessage_send_message |
Send to a phone/email/group chat; tries iMessage, falls back to SMS/RCS, verifies delivery. |
imessage_list_chats |
List recent conversations with previews. |
imessage_list_messages |
Paginated message history for one chat. |
imessage_wait_for_reply |
Block (up to 30 min) until a new incoming message arrives — replaces hand-rolled polling loops. |
imessage_search_contacts |
Search Contacts.app by name. |
imessage_get_contact |
Full details (phones/emails/addresses) for one contact id. |
imessage_create_contact |
Create a new Contacts.app card. |
imessage_update_contact_address |
Add/replace an address by label (home/work/other). |
imessage_update_contact_phone |
Add/replace a phone by label (home/work/mobile/main/other). |
Known limitations
- Contacts.app duplicate cards: it's common for the same real person to
have 2+ separate
personrecords.imessage_search_contactsreturns all of them; keeping a contact's info consistent may mean calling the update tools once per duplicate id. - Contact ids can go stale: with iCloud Contacts sync on, a person's
idcan change shortly after it's created or edited (sync reassigns/ merges the record). If an update call errors saying the contact wasn't found, re-runimessage_search_contactsto get the current id and retry. - No delete/merge tools: intentionally out of scope, since this is meant to be low-risk to run against real data.
imessage_send_messagegroup chat support: only works for an existing group chat identifier; it won't create a new group.- Requires macOS Messages/Contacts apps to be installed and signed in; no support for other platforms.
Notes on implementation
- Message dates in
chat.dbare nanoseconds since 2001-01-01 (Apple's Core Data epoch);dates.pyhandles the conversion to/from ISO8601. - Structured Contacts.app output is parsed out of AppleScript using ASCII
separator control characters (record/group/unit/field separators)
generated at runtime via
(ASCII character N), rather than hand-built JSON in AppleScript. These are generated at runtime rather than embedded as literal bytes in the script source, because Python'sstr.splitlines()(used to break a script into-earguments) treats\x1c/\x1d/\x1eas line boundaries and would silently corrupt them. - All dynamic values (search queries, addresses, phone numbers) are passed
as
argvitems toosascript, never interpolated into the script source, to avoid AppleScript injection.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.