create-bookmark
Save URLs as bookmarks in Raindrop.io with optional titles, tags, and collection IDs using the Raindrop.io MCP Server. Simplify bookmarking through AI-assisted workflows.
Instructions
Create a new bookmark in Raindrop.io
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | No | Collection ID to save to (optional) | |
tags | No | Tags for the bookmark (optional) | |
title | No | Title for the bookmark (optional) | |
url | Yes | URL to bookmark |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection ID to save to (optional)",
"type": "number"
},
"tags": {
"description": "Tags for the bookmark (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Title for the bookmark (optional)",
"type": "string"
},
"url": {
"description": "URL to bookmark",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}