folder_list
List OmniFocus folders, optionally filtered by parent folder, to navigate the folder hierarchy one level at a time.
Instructions
List folders in OmniFocus, optionally filtered by parent folder. Do not use to fetch a single folder by ID; prefer folder_get instead. Returns a flat array with projectCount and subfolderCount per folder. Use parentId to walk the hierarchy one level at a time. Safe to call repeatedly; no side effects. Example: folder_list({}) Example: folder_list({ parentId: "fld123" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| verbose | No | When true, return the full unelided folder shape. Default: false — `parentId` is omitted when null (top-level folder). See docs/token-cost.md for the defaults table. | |
| parentId | No | Return only direct children of this folder. Get the ID from a previous folder_list call. Omit for root folders. |