move_email
Move emails to different mailboxes in macOS Mail. Organize your inbox by transferring messages to specific folders with this Pilot MCP tool.
Instructions
Move email to a different mailbox
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Tool registration loop where 'move_email' is registered with the MCP server using server.tool(). All 33 tools are registered identically with empty schemas and stub handlers.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], })); } - server.js:19-19 (handler)Definition of 'move_email' in the TOOLS array with its description. The actual handler is the generic stub function at lines 83-85 that returns a placeholder message.
["move_email", "Move email to a different mailbox"], - server.js:83-83 (schema)Empty schema object '{}' passed as the third argument to server.tool(). This stub does not define actual input validation schemas.
server.tool(name, desc, {}, async () => ({