whatsapp_search_messages
Search WhatsApp messages to find specific conversations or content by keyword.
Instructions
Search WhatsApp messages
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:86-86 (registration)Tool registration entry in the TOOLS array. The tool is named 'whatsapp_search_messages' with description 'Search WhatsApp messages'.
["whatsapp_search_messages", "Search WhatsApp messages"], - server.js:106-109 (handler)Generic stub handler for all tools. When 'whatsapp_search_messages' is invoked, it returns a static message directing the user to install the real Local MCP binary. The real implementation is in a native binary (macOS/Windows/Linux) not present in this codebase.
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" }], }));