custom-raindrop-mcp
v1.0.4
Published
A Model Context Protocol (MCP) server to interact with your Raindrop.io bookmarks
Downloads
195
Maintainers
Readme
custom-raindrop-mcp
A Model Context Protocol (MCP) server that lets AI agents interact with your Raindrop.io bookmarks.
Features
- List collections — browse all your Raindrop.io folders
- Search bookmarks — search across all collections or within a specific one
- Get bookmark details — retrieve full details for a specific raindrop by ID
Installation
Via npx (recommended)
No installation needed. Configure your MCP client to run:
npx custom-raindrop-mcpGlobal install
npm install -g custom-raindrop-mcpConfiguration
The server requires a Raindrop.io API token.
- Go to https://app.raindrop.io/settings/integrations
- Create a new app and copy the Test token
Cursor / Claude Desktop
Add this to your MCP configuration:
{
"mcpServers": {
"raindrop": {
"command": "npx",
"args": ["custom-raindrop-mcp"],
"env": {
"RAINDROP_TOKEN": "your_token_here"
}
}
}
}Available Tools
list_collections
Lists all collections (folders) in your Raindrop.io account.
No parameters required.
search_raindrops
Searches for bookmarks across all collections or within a specific one.
| Parameter | Type | Required | Description |
|---|---|---|---|
| collectionId | string | No | Collection ID to search in (default: "0" = all) |
| search | string | No | Search query (title, tags, domain, etc.) |
| page | number | No | Page number for pagination (default: 0) |
get_raindrop
Gets full details for a specific bookmark by its ID.
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | The unique ID of the raindrop |
License
ISC
