7d529593aca3be795ad0425296b561ffd7d7a0aasource_git · hiromitsusasaki/raindrop-io-mcp-server · current release
Observed 2026-08-25T08:35:15.043Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2024-11-05.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
create-bookmarkCreate a new bookmark in Raindrop.ioInput schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "URL to bookmark"
},
"title": {
"type": "string",
"description": "Title for the bookmark (optional)"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tags for the bookmark (optional)"
},
"collection": {
"type": "number",
"description": "Collection ID to save to (optional)"
}
},
"required": [
"url"
]
} | — | — · — | — |
list-collectionsList all your Raindrop.io collectionsInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
search-bookmarksSearch through your Raindrop.io bookmarksInput schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Filter by tags (optional)"
},
"page": {
"type": "number",
"description": "Page number (0-based, optional)"
},
"perpage": {
"type": "number",
"description": "Items per page (1-50, optional)"
},
"sort": {
"type": "string",
"enum": [
"-created",
"created",
"-last_update",
"last_update",
"-title",
"title",
"-domain",
"domain"
],
"description": "Sort order (optional). Prefix with - for descending order."
},
"collection": {
"type": "number",
"description": "Collection ID to search in (optional, 0 for all collections)"
},
"word": {
"type": "boolean",
"description": "Whether to match exact words only (optional)"
}
},
"required": [
"query"
]
} | — | — · — | — |