🗂️ Collection tools
List, create, update, delete, and clean up collections — including nested ones.
Seven tools manage collections, including root and nested (child) collections.
| Tool | Description |
|---|---|
get_collections | List all root collections |
get_child_collections | List all child (nested) collections |
get_collection | Get a single collection by ID |
create_collection | Create a new collection (optional parent, view, public flag) |
update_collection | Rename, nest, or change the view of a collection |
delete_collection | Delete a collection and all its bookmarks |
cleanup_collections | Remove all empty collections — pass confirm: true to execute |
🌳 Nesting and views
create_collection and update_collection accept:
parent_id— nest a collection under another.view— one oflist,simple,grid, ormasonry.public— make the collection publicly shareable.
⚠️ Destructive operations
delete_collectionremoves the collection and every bookmark inside it.cleanup_collectionsdeletes all empty collections in one pass. It is a no-op until you passconfirm: true, so you can preview intent safely.