Overview
Raindrop MCP exposes the Raindrop.io API as an MCP server, so Claude and other MCP clients can search bookmarks, create new ones, manage collection trees, and clean up tags conversationally instead of through the Raindrop UI.
I built it because most of my “save for later” links live in Raindrop, and being able to ask “find me everything I saved about Postgres last year and tag it db” is much faster than clicking through the web app.

Features
- Create, search, update, delete bookmarks
- Browse and manage nested collections
- List, merge, rename, and clean up tags
- Pull metadata from any URL (title, description, og-image)
- Raindrop’s full search syntax (
#tag,site:,type:, etc.) - Field filtering so responses stay small
- Bulk operations for tag-rewrite migrations
Available Tools
Bookmarks
list-raindrops: list bookmarks in a collectionsearch-raindrops: search with Raindrop’s query syntaxcreate-raindrop: save a new bookmark, auto-parsed from URLupdate-raindrop/delete-raindrop: edit or remove existing bookmarks
Collections & Tags
list-collections/create-collection: manage the folder treelist-tags/merge-tags: clean up your tag taxonomy
Utilities
parse-url: pull metadata from a URL without saving itcheck-url-exists: duplicate-check before addinglist-highlights: read your saved highlights
Installation
Add to your Claude Desktop config and set your Raindrop API token:
json
{
"mcpServers": {
"raindrop": {
"command": "npx",
"args": ["-y", "@briansunter/raindrop-mcp"],
"env": {
"RAINDROP_TOKEN": "your-token-here"
}
}
}
}Technology Stack
- TypeScript MCP server (stdio)
- Raindrop.io REST API
- Field filtering and pagination
- Distributed via npm /
bunx