Raindrop.io MCP Server
README.md
# 🌧️ Raindrop.io MCP Server
[](https://smithery.ai/server/@sachin-philip/raindrop-io-mcp)
## Overview
[Raindrop.io](https://raindrop.io/) is an all-in-one bookmark manager. This MCP server integration lets you manage your bookmarks programmatically—add, search, and organize your favorite links right from your LLM apps.
---
## ✨ Features
- **Add a bookmark** (with tags, description, collection)
- **Get latest bookmarks**
- **Search bookmarks by tag**
- **Search bookmarks by keyword/text**
---
## 🚀 Quickstart
### Prerequisites
- Python **3.11**
- [UV](https://astral.sh/uv/) package manager
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
uv activate && uv install
```
---
### MCP Server Configuration
1. Grab an API token from [Raindrop.io Developer Portal](https://developer.raindrop.io/v1/authentication/token)
2. Add the following to your MCP config:
```jsonc
{
"mcpServers": {
"Raindrop": {
"command": "uv",
"args": [
"--directory",
"<location to project clone>",
"run",
"raindrop.py"
],
"env": {
"RAINDROP_TOKEN": "<your_raindrop_token>"
}
}
}
}
```
3. Restart your LLM app (Claude, Cursor, etc.)
---
### 📦 Install via Smithery
Install automatically for Claude Desktop:
```bash
npx -y @smithery/cli install @sachin-philip/raindrop-io-mcp --client claude
```
---
## 🛠️ Supported Commands
- Add a bookmark (with tags, description, collection)
- Get latest bookmarks
- Search bookmarks by tag
- Search bookmarks by keyword/text
... More to follow
---
## 📝 License
MIT
---
## 🙌 Credits
Built by [Sachin Philip](https://github.com/sachin-philip)
TDQS
A3.6/5.0
Scored across 4 tools
Disambiguation5/5
Each tool has a distinct purpose: adding a bookmark, retrieving recent feed, searching by keyword, and searching by tag. No overlap or ambiguity.
Naming Consistency5/5
All tool names follow a consistent verb_noun snake_case pattern (add_bookmark, get_latest_feed, search_bookmarks, search_by_tag), making them predictable and easy to understand.
Tool Count4/5
With 4 tools, the server is scoped to essential bookmarking operations: add, feed, and search. This is slightly minimal but still reasonable for a basic integration.
Completeness2/5
The tool set lacks update/delete functionality and any way to list bookmarks beyond the feed or search. There is no tool for managing collections, leaving notable gaps for full CRUD operations.
Maintenance
ActivityInactive
ResponsivenessNo issues