folder_get
Fetch a single folder by its persistent ID, returning its name, parent, and counts of projects and subfolders.
Instructions
Fetch a single folder by its persistent ID, including project and subfolder counts. Do not use to list multiple folders; prefer folder_list instead. Returns folder details including name, parentId, projectCount, and subfolderCount. Safe to call repeatedly; no side effects. Example: folder_get({ id: "fld123" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Persistent folder ID. Get from folder_list. IDs are stable across renames. | |
| verbose | No | When true, return the full unelided folder shape. Default: false — `parentId` is omitted when null. See docs/token-cost.md for the defaults table. |