Raindrop.io MCP Server is a bridge that connects AI language models to the Raindrop.io bookmarking service. It implements the Model Context Protocol (MCP) standard, allowing AI agents to interact with your bookmarks, collections, tags, and highlights in a structured way.
Before using the Raindrop.io MCP Server, you'll need:
To get your API token, go to your Raindrop.io settings and create a new API token.
The easiest way to get started is using npx, which doesn't require installation:
# Set your API token as an environment variable
export RAINDROP_ACCESS_TOKEN=YOUR_RAINDROP_ACCESS_TOKEN
# Run the server
npx @adeze/raindrop-mcp
If you prefer to install from source:
# Clone the repository
git clone https://github.com/adeze/raindrop-mcp.git
cd raindrop-mcp
# Install dependencies
bun install
# Configure Environment Variables
cp .env.example .env
Edit the .env
file and add your Raindrop.io API Access Token:
RAINDROP_ACCESS_TOKEN=YOUR_RAINDROP_ACCESS_TOKEN
Then build and run the server:
bun run build
bun start
The server exposes these resource URIs that you can access:
collections://all
- All collectionscollections://{parentId}/children
- Child collectionstags://all
- All tagstags://collection/{collectionId}
- Tags filtered by collectionhighlights://all
- All highlightshighlights://raindrop/{raindropId}
- Highlights for a specific bookmarkhighlights://collection/{collectionId}
- Highlights filtered by collectionbookmarks://collection/{collectionId}
- Bookmarks in a collectionbookmarks://raindrop/{id}
- Specific bookmark by IDuser://info
- User informationuser://stats
- User statisticsTo connect the Raindrop MCP server with an AI assistant or other MCP-compatible clients, add this configuration to your .mcp.json
file:
"raindrop": {
"command": "npx",
"args": [
"@adeze/raindrop-mcp"
],
"env": {
"RAINDROP_ACCESS_TOKEN": "YOUR_RAINDROP_API_TOKEN"
}
}
This registers the Raindrop server under the name "raindrop" and makes all resources and tools available to your AI assistant.
The server supports a wide range of operations:
If you prefer to run the server in HTTP mode instead of the default stdio mode:
bun run start:http
This makes the server available over HTTP, which can be useful for certain integrations or testing.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "raindrop" '{"command":"npx","args":["@adeze/raindrop-mcp"],"env":{"RAINDROP_ACCESS_TOKEN":"YOUR_RAINDROP_API_TOKEN"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"raindrop": {
"command": "npx",
"args": [
"@adeze/raindrop-mcp"
],
"env": {
"RAINDROP_ACCESS_TOKEN": "YOUR_RAINDROP_API_TOKEN"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"raindrop": {
"command": "npx",
"args": [
"@adeze/raindrop-mcp"
],
"env": {
"RAINDROP_ACCESS_TOKEN": "YOUR_RAINDROP_API_TOKEN"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect