search-bookmarks
Search and filter your Raindrop.io bookmarks by query, tags, or collection. Sort results and paginate for efficient access to saved content.
Instructions
Search through your Raindrop.io bookmarks
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | No | Collection ID to search in (optional, 0 for all collections) | |
| page | No | Page number (0-based, optional) | |
| perpage | No | Items per page (1-50, optional) | |
| query | Yes | Search query | |
| sort | No | Sort order (optional). Prefix with - for descending order. | |
| tags | No | Filter by tags (optional) | |
| word | No | Whether to match exact words only (optional) |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection ID to search in (optional, 0 for all collections)",
"type": "number"
},
"page": {
"description": "Page number (0-based, optional)",
"type": "number"
},
"perpage": {
"description": "Items per page (1-50, optional)",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
},
"sort": {
"description": "Sort order (optional). Prefix with - for descending order.",
"enum": [
"-created",
"created",
"-last_update",
"last_update",
"-title",
"title",
"-domain",
"domain"
],
"type": "string"
},
"tags": {
"description": "Filter by tags (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"word": {
"description": "Whether to match exact words only (optional)",
"type": "boolean"
}
},
"required": [
"query"
],
"type": "object"
}