n8n_manage_folders
Create, list, get, rename, move, and delete n8n workflow folders. Organize workflows into folders to manage projects and subfolders.
Instructions
Manage workflow folders (n8n 2.19+; folders need a registered Community instance or higher). Actions: create, list, get, rename, move, delete. projectId defaults to 'personal' (the calling user's personal project). Place workflows into folders via n8n_create_workflow's parentFolderId or the moveToFolder operation of n8n_update_partial_workflow (both n8n 2.32+). Note: n8n's API cannot report which folder a workflow is in - folder contents are visible only as counts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | For create: folder name (required). For rename: new name (required). | |
| skip | No | For list: items to skip for pagination (default 0) | |
| take | No | For list: items to return (default 50, max 100) | |
| action | Yes | Operation: create=new folder, list=folders in a project (with workflow/subfolder counts), get=folder details with recursive totals, rename=change name, move=re-parent under another folder or the project root, delete=remove folder | |
| sortBy | No | For list: sort order (default: updatedAt:desc) | |
| folderId | No | Folder ID (required for get, rename, move, delete) | |
| projectId | No | Project containing the folder(s). Defaults to 'personal' - resolved to the calling user's personal project. Pass a real project ID on multi-project (enterprise) instances. | |
| nameFilter | No | For list: filter folders by name (contains match) | |
| parentFolderId | No | For create: optional parent folder to nest under. For move: target parent folder ID, or null to move to the project root (required). For list: only return direct children of this folder. | |
| transferToFolderId | No | For delete: move contained workflows and sub-folders into this folder first ('0' = project root). If omitted, workflows are moved to the project root AND ARCHIVED, and sub-folders are deleted. |