move_email
Move an email to a different mailbox to organize your inbox and manage messages efficiently.
Instructions
Move email to a different mailbox
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:18-18 (registration)The tool 'move_email' is registered in the TOOLS array as a stub. The real implementation is a native binary (macOS/Windows/Linux) that is not included in this codebase. This file is only an inspection stub for Glama.
["move_email", "Move email to a different mailbox"], - server.js:106-110 (handler)Generic stub handler for 'move_email' (and all other tools). Returns a placeholder message instructing to install the real native binary. The actual handler logic lives in the external 'local-mcp' package.
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" }], })); }