The iMessage Query MCP Server provides a secure interface for LLMs to access and analyze your iMessage conversations through the Model Context Protocol (MCP). Built with the FastMCP framework and imessagedb library, it enables AI assistants to retrieve message history with proper phone number validation and attachment handling. This macOS-only tool allows you to search through your message history by contact, apply date filters, and access message content including attachments. All operations are read-only, ensuring your message database remains secure while providing AI assistants with the context they need to help you analyze conversations.
The iMessage Query MCP Server enables AI assistants to access and analyze your iMessage conversations through a secure Model Context Protocol (MCP) interface. This tool is particularly useful for retrieving conversation history with specific contacts, analyzing message patterns, and accessing message content including attachments.
Before installing the iMessage Query MCP Server, ensure you have Python 3.6+ installed on your macOS system.
git clone https://github.com/hannesrudolph/imessage-query-fastmcp-mcp-server.git
cd imessage-query-fastmcp-mcp-server
Install all required dependencies using pip:
pip install -r requirements.txt
The main dependencies include:
If you're using Claude Desktop, install the MCP server using FastMCP:
fastmcp install imessage-query-server.py --name "iMessage Query"
To use this server with the Cline VSCode plugin:
{
"imessage-query": {
"command": "uv",
"args": [
"run",
"--with",
"fastmcp",
"fastmcp",
"run",
"/path/to/repo/imessage-query-server.py"
]
}
}
Replace /path/to/repo
with the full path to where you cloned the repository.
This tool retrieves message history for a specific phone number with optional date filtering.
Parameters:
phone_number
: The contact's phone number to retrieve messages fromstart_date
(optional): Filter messages starting from this date (format: YYYY-MM-DD)end_date
(optional): Filter messages up to this date (format: YYYY-MM-DD)Returns:
Here are some examples of how to use the iMessage Query MCP Server with an AI assistant:
Retrieve recent messages from a contact: "Can you show me my recent messages with John at 555-123-4567?"
Find messages within a date range: "Show me my conversation with 555-987-6543 between January 1, 2023 and February 15, 2023."
Analyze conversation patterns: "Can you analyze my messaging patterns with 555-555-5555 over the last month?"
The iMessage Query MCP Server includes several safety features:
If you encounter issues:
For additional help, refer to the development documentation in the dev_docs
folder of the repository.