imessage-mcp
Provides read-only access to iMessage data, allowing listing of chats, retrieving messages from specific chats, and searching messages across all chats with automatic contact name resolution.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@imessage-mcpSearch my messages for 'meeting tomorrow'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
imessage-mcp
A read-only MCP server for macOS that exposes your iMessage data over the Model Context Protocol (MCP), with automatic contact name resolution.
Use it with Cursor, OpenAI Codex, Claude Desktop, Claude Code, or any other MCP-capable client your terminal editor supports.
Setup
1. Install
cd ~/workspace/imessage-mcp
python3.12 -m venv .venv
source .venv/bin/activate
pip install -e .2. Grant Full Disk Access
The server needs to read ~/Library/Messages/chat.db and the Contacts database. Grant Full Disk Access to the app that runs the server:
Open System Settings → Privacy & Security → Full Disk Access
For terminal-based MCP (Cursor agent, Claude Code, Codex in the terminal, etc.): add your terminal app (e.g., Terminal, iTerm2, Ghostty, Warp).
For Claude Desktop: add the Claude app itself.
3. Configure Cursor
In Cursor Settings → MCP (or your user MCP config, depending on Cursor version), register a server with the same command and args as in the Claude Code snippet below — only the host config file/path differs.
Example shape:
{
"mcpServers": {
"imessage": {
"command": "<path-to-this-repo>/.venv/bin/python",
"args": ["-m", "imessage_mcp"]
}
}
}4. Configure Claude Code
Add to ~/.claude/settings.json:
{
"mcpServers": {
"imessage": {
"command": "/Users/jaredmoskowitz/workspace/imessage-mcp/.venv/bin/python",
"args": ["-m", "imessage_mcp"]
}
}
}5. Configure Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"imessage": {
"command": "/Users/jaredmoskowitz/workspace/imessage-mcp/.venv/bin/python",
"args": ["-m", "imessage_mcp"]
}
}
}Tools
list_chats
List your iMessage chats sorted by recent activity.
limit(optional, default 50): max chats to return
get_messages
Get messages from a specific chat.
chat_id(required): chat identifier fromlist_chatslimit(optional, default 50): max messagessince(optional): ISO date string — only messages after this date
search_messages
Search all chats for messages containing a keyword.
query(required): search textlimit(optional, default 50): max results
Example Usage
"List my group chats" "Get the last 20 messages from my Business Ideas chat" "Search my messages for 'startup idea'"
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/jaredmoskowitz/imessage-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server