whatsapp_list_chats
Retrieve a list of your WhatsApp conversations to manage or search through messages.
Instructions
List WhatsApp conversations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:84-84 (registration)The tool 'whatsapp_list_chats' is registered in the TOOLS array with description 'List WhatsApp conversations'. It is part of a stub/inspection server that returns a placeholder message rather than real logic.
["whatsapp_list_chats", "List WhatsApp conversations"], - server.js:106-109 (handler)The handler for all tools (including whatsapp_list_chats) is a stub that returns a message to install the real Local MCP package. There is no actual WhatsApp integration 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" }], }));