create_email_folder
Create a new email folder or mailbox to organize your messages.
Instructions
Create a new email folder/mailbox
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:95-95 (registration)The tool 'create_email_folder' is registered in the TOOLS array with description 'Create a new email folder/mailbox'.
["create_email_folder", "Create a new email folder/mailbox"], - server.js:106-109 (handler)The handler for 'create_email_folder' is a generic stub that returns a placeholder message. The real implementation is in a native binary (macOS/Windows/Linux) not included 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" }], }));