List Proton Mail Folders
proton_list_foldersRetrieve all mailbox folders with message and unread counts to organize and manage Proton Mail email storage.
Instructions
List all mailbox folders (INBOX, Sent, Drafts, Trash, etc.) with message counts and unread counts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | text |
Implementation Reference
- src/schemas/index.ts:7-9 (schema)Schema definition for the inputs accepted by the 'proton_list_folders' tool.
export const ListFoldersSchema = z.object({ response_format: z.enum(['text', 'json']).optional().default('text'), });