create_mailbox
Create a new email folder in iCloud Mail to organize messages by project, sender, or category for better inbox management.
Instructions
Create a new mailbox/folder
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the new mailbox |
Implementation Reference
- lib/imap.js:1230-1236 (handler)Handler implementation for the create_mailbox tool.
export async function createMailbox(name, creds = null) { const client = createRateLimitedClient(creds); await client.connect(); await client.mailboxCreate(name); await client.logout(); return { created: name }; }