mcp-raindrop-io

🗂️ Collection tools

List, create, update, delete, and clean up collections — including nested ones.

Seven tools manage collections, including root and nested (child) collections.

ToolDescription
get_collectionsList all root collections
get_child_collectionsList all child (nested) collections
get_collectionGet a single collection by ID
create_collectionCreate a new collection (optional parent, view, public flag)
update_collectionRename, nest, or change the view of a collection
delete_collectionDelete a collection and all its bookmarks
cleanup_collectionsRemove 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 of list, simple, grid, or masonry.
  • public — make the collection publicly shareable.

⚠️ Destructive operations

  • delete_collection removes the collection and every bookmark inside it.
  • cleanup_collections deletes all empty collections in one pass. It is a no-op until you pass confirm: true, so you can preview intent safely.

On this page