list_message_chats
Retrieve recent iMessage conversations to access chat history and manage messages directly from AI agents.
Instructions
List recent iMessage conversations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:36-36 (registration)Tool 'list_message_chats' is registered in the TOOLS array with description 'List recent iMessage conversations'.
["list_message_chats", "List recent iMessage conversations"], - server.js:106-110 (handler)Generic handler stub for all tools, including list_message_chats. All tools share the same inspection stub handler that returns a static message instructing the user to install Local MCP.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], })); } - server.js:107-107 (schema)Empty schema object passed to server.tool() for list_message_chats (no input parameters).
server.tool(name, desc, {}, async () => ({