Raindrop.io
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RAINDROP_ACCESS_TOKEN | Yes | Your Raindrop.io API Access Token (create one in your Raindrop.io settings) |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| getCollectionC | Get a specific collection by ID |
| getCollectionsB | Get all collections |
| createCollectionC | Create a new collection |
| updateCollectionC | Update an existing collection |
| deleteCollectionC | Delete a collection |
| shareCollectionC | Share a collection with others |
| mergeCollectionsC | Merge multiple collections into one target collection |
| removeEmptyCollectionsB | Remove all empty collections |
| emptyTrashB | Empty the trash by permanently deleting all raindrops in it |
| getBookmarkC | Get a specific bookmark by ID |
| getBookmarksC | Get bookmarks with optional filtering |
| searchBookmarksC | Search bookmarks with advanced filters |
| createBookmarkC | Create a new bookmark |
| updateBookmarkC | Update an existing bookmark |
| deleteBookmarkC | Delete a bookmark |
| batchUpdateBookmarksC | Update multiple bookmarks at once |
| bulkMoveBookmarksC | Move multiple bookmarks to another collection |
| bulkTagBookmarksC | Add or remove tags from multiple bookmarks |
| batchDeleteBookmarksC | Delete multiple bookmarks at once |
| setReminderC | Set a reminder for a bookmark |
| deleteReminderC | Delete a reminder from a bookmark |
| getTagsC | Get all tags |
| renameTagB | Rename a tag across all bookmarks or in a specific collection |
| deleteTagC | Remove a tag from all bookmarks or in a specific collection |
| mergeTagsC | Merge multiple tags into one destination tag |
| deleteTagsC | Delete tags from all bookmarks |
| getHighlightsC | Get highlights for a specific bookmark |
| getAllHighlightsC | Get all highlights across all bookmarks |
| getHighlightsByCollectionC | Get highlights for bookmarks in a specific collection |
| createHighlightC | Create a new highlight for a bookmark |
| updateHighlightC | Update an existing highlight |
| deleteHighlightC | Delete a highlight |
| getUserInfoC | Get user information |
| getUserStatsC | Get user statistics |
| getImportStatusB | Check the status of an ongoing import |
| getExportStatusB | Check the status of an ongoing export |
| exportBookmarksC | Export bookmarks in various formats |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| collections | |
| tags | |
| highlights | |
| user-info | |
| user-stats |
TDQS
Scored across 37 tools
Most tools have distinct purposes targeting specific resources (bookmarks, collections, highlights, tags) and actions, with clear boundaries. However, some overlap exists between deleteTag and deleteTags, and between getHighlights and getHighlightsByCollection, which could cause minor confusion.
Tool names follow a highly consistent verb_noun pattern throughout, with clear and predictable naming (e.g., createBookmark, getBookmarks, updateCollection). All names use camelCase uniformly, making them easy to parse and understand.
With 37 tools, the count is high and feels heavy for a bookmark management domain. While many tools cover specific operations, the number may overwhelm agents and could likely be consolidated or streamlined without losing functionality.
The tool set provides comprehensive CRUD and lifecycle coverage for bookmarks, collections, highlights, tags, and user operations. It includes advanced features like bulk operations, reminders, sharing, and import/export, leaving no obvious gaps for the domain.