list_message_chats
Retrieve recent iMessage conversations from macOS Messages. Enables AI agents to view chat history and access message threads for workflow automation and reference.
Instructions
List recent iMessage conversations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Tool registration loop where list_message_chats is registered as a stub. All tools are registered with empty schemas and a placeholder response indicating this is just an inspection stub.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], })); } - server.js:36-36 (schema)Tool definition entry for list_message_chats in the TOOLS array - this is where the tool name and description are defined.
["list_message_chats", "List recent iMessage conversations"],