rainkeeper
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RAINDROP_ACCESS_TOKEN | Yes | Your Raindrop.io test token |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_collectionsA | List all Raindrop.io collections (root and sub-collections), with id, title, and parent_id. |
| get_collectionA | Get details of a single collection by id. |
| create_collectionC | Create a new collection. Pass parent_id to create a sub-collection. |
| update_collectionB | Update a collection's title, visibility, or colour. color is a hex string e.g. '#ff0000'. |
| delete_collectionB | Delete a collection. Contents move to Unsorted. |
| list_raindropsA | List bookmarks in a collection. collection_id 0 = All, -1 = Unsorted. sort: -created, title, -title, domain. Maximum per_page is 50. |
| get_raindropB | Get a single bookmark by id. |
| create_raindropA | Save a new bookmark. collection_id -1 = Unsorted. Tags is a list of strings. Pass title='' to explicitly clear the auto-detected title. |
| update_raindropB | Update a bookmark. Pass collection_id to move it — uses the correct nested API format. |
| move_raindropB | Move a single bookmark to a different collection. Explicit tool for clarity. |
| delete_raindropB | Delete a bookmark permanently. |
| bulk_move_raindropsA | Move multiple bookmarks to a target collection. ids must be non-empty and all from source_collection_id — ids from other collections are silently skipped by the API. |
| bulk_tag_raindropsA | Apply tags to multiple bookmarks. Merges with existing tags. WARNING: passing tags=[] will remove all tags from the targeted bookmarks. |
| bulk_mark_importantB | Flag multiple bookmarks as important (starred). ids must be non-empty. |
| bulk_delete_raindropsC | Permanently delete multiple bookmarks. ids must be non-empty. |
| search_raindropsA | Search bookmarks using Raindrop search syntax. collection_id 0 = search all. Supports #tag, word, "phrase", type:article, etc. Maximum per_page is 50. |
| list_tagsA | List all tags. Pass collection_id to scope to a specific collection. |
| rename_tagC | Rename a tag across all bookmarks. |
| delete_tagsB | Delete one or more tags from all bookmarks. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 19 tools
Tools are mostly distinct across resources (collections, raindrops, tags) and actions (create, delete, list, etc.). However, bulk operations and single operations (e.g., bulk_move_raindrops vs move_raindrop) have overlapping purposes, and bulk_mark_important could be considered a subset of update_raindrop.
All tools follow a consistent verb_noun pattern in snake_case, with optional prefixes like bulk_ or create_ indicating scope. There are no violations or mixed conventions.
19 tools cover the essential operations for a bookmark management API: CRUD, bulk operations, search, and tag management. This is neither too few nor too many for the domain.
The tool set covers most core functionalities: CRUD for collections and raindrops, tag management, search, and bulk actions. Missing advanced features like import/export or sharing, but the core workflow is complete.