getBookmark
Retrieve a specific bookmark by its ID using the Raindrop.io MCP server. Access and manage your bookmarks directly with this tool.
Instructions
Get a specific bookmark by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Bookmark ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Bookmark ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}