createCollection
Use this tool to create a new collection in Raindrop.io. Define the collection title and set its public visibility for easy bookmark organization.
Instructions
Create a new collection
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| isPublic | No | Whether the collection is public | |
| title | Yes | Collection title | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "isPublic": {
      "description": "Whether the collection is public",
      "type": "boolean"
    },
    "title": {
      "description": "Collection title",
      "type": "string"
    }
  },
  "required": [
    "title"
  ],
  "type": "object"
}