whatsapp_send_file
Send files directly through WhatsApp. Transfer documents, images, and other files to your contacts without needing to open the app.
Instructions
Send a file via WhatsApp
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:88-88 (registration)Tool registration stub for 'whatsapp_send_file' – this is a minimal MCP stub that lists the tool so Glama can detect it; the real implementation is in a native binary not present in this codebase.
["whatsapp_send_file", "Send a file via WhatsApp"], - server.js:107-109 (handler)Generic stub handler for all tools – returns a placeholder message. The real handler logic for whatsapp_send_file lives in the native binary (not present in this repository).
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 (no input parameters defined) for the tool registration stub.
server.tool(name, desc, {}, async () => ({