createBookmark
Save and organize web links as bookmarks with title, tags, and descriptions in Raindrop.io collections using this tool. Streamline bookmark management for efficient access.
Instructions
Create a new bookmark
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionId | Yes | Collection ID | |
excerpt | No | Short description | |
important | No | Mark as important | |
link | Yes | URL of the bookmark | |
tags | No | List of tags | |
title | No | Title of the bookmark |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collectionId": {
"description": "Collection ID",
"type": "number"
},
"excerpt": {
"description": "Short description",
"type": "string"
},
"important": {
"description": "Mark as important",
"type": "boolean"
},
"link": {
"description": "URL of the bookmark",
"format": "uri",
"type": "string"
},
"tags": {
"description": "List of tags",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Title of the bookmark",
"type": "string"
}
},
"required": [
"link",
"collectionId"
],
"type": "object"
}