search_messages
Search iMessages by keyword to find past conversations without scrolling through your entire message history.
Instructions
Search iMessages by keyword
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:38-38 (registration)Tool 'search_messages' is registered in the TOOLS array as ['search_messages', 'Search iMessages by keyword']
["search_messages", "Search iMessages by keyword"], - server.js:106-110 (handler)Generic stub handler for all tools including 'search_messages' that returns an inspection placeholder message
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 as parameter schema for all tools including 'search_messages'
server.tool(name, desc, {}, async () => ({ - server.js:106-110 (registration)Tools are registered in a loop iterating over the TOOLS array, calling server.tool() for each entry
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" }], })); }