save_attachment
Extract and save email attachments to your Mac's disk. Keep files organized by storing attachments locally.
Instructions
Save email attachment to disk
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:19-19 (registration)Registration entry for the 'save_attachment' tool in the TOOLS array at line 19. The tool is registered with description 'Save email attachment to disk'.
["save_attachment", "Save email attachment to disk"], - server.js:106-110 (handler)Generic stub handler for all tools including 'save_attachment'. Returns a placeholder message instructing to install the full Local MCP server. The actual implementation is a native binary not present in this source code.
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" }], })); }