The Raindrop MCP Server is a tool that allows you to interact with your Raindrop.io bookmarks using natural language through Claude Desktop. It enables you to view, create, update, and manage your collections and bookmarks by simply asking questions or giving commands in plain English.
.env
file in the root directoryRAINDROP_TOKEN="your_token_here"
To install the server to Claude Desktop:
uv run mcp install server.py
For testing or development, you can run the server in development mode:
uv run mcp dev server.py
Once installed in Claude Desktop, you can ask questions and give commands like:
Creates a new collection in Raindrop.io.
Parameters:
title
(required): Name of the collectionview
: View type (list, grid, masonry, simple)public
: Whether the collection is publicparent_id
: ID of parent collection (omit for root collection)Updates an existing collection in Raindrop.io.
Parameters:
collection_id
(required): ID of the collection to updatetitle
: New name for the collectionview
: View type (list, grid, masonry, simple)public
: Whether the collection is publicparent_id
: ID of parent collection (omit for root collection)expanded
: Whether the collection is expandedDeletes a collection from Raindrop.io. The raindrops will be moved to Trash.
Parameters:
collection_id
(required): ID of the collection to deleteGets a single raindrop from Raindrop.io by ID.
Parameters:
raindrop_id
(required): ID of the raindrop to fetchGets multiple raindrops from a Raindrop.io collection.
Parameters:
collection_id
(required): ID of the collection to fetch raindrops from. Use 0 for all raindrops, -1 for unsorted, -99 for trash.search
: Optional search querysort
: Sorting order (options: -created, created, score, -sort, title, -title, domain, -domain)page
: Page number (starting from 0)perpage
: Items per page (max 50)nested
: Whether to include raindrops from nested collectionsUpdates an existing raindrop (bookmark) in Raindrop.io.
Parameters:
raindrop_id
(required): ID of the raindrop to updatetitle
: New title for the raindropexcerpt
: New description/excerptlink
: New URLimportant
: Set to True to mark as favoritetags
: List of tags to assigncollection_id
: ID of collection to move the raindrop tocover
: URL for the cover imagetype
: Type of the raindroporder
: Sort order (ascending) - set to 0 to move to first placepleaseParse
: Set to True to reparse metadata (cover, type) in the backgroundUpdates multiple raindrops at once within a collection.
Parameters:
collection_id
(required): ID of the collection containing raindrops to updateids
: Optional list of specific raindrop IDs to updateimportant
: Set to True to mark as favorite, False to unmarktags
: List of tags to add (or empty list to remove all tags)cover
: URL for cover image (use 'target_collection_id
: ID of collection to move raindrops tonested
: Include raindrops from nested collectionssearch
: Optional search query to filter which raindrops to updateEmpties the trash in Raindrop.io, permanently deleting all raindrops in it.
Gets tags from Raindrop.io.
Parameters:
collection_id
: Optional ID of the collection to fetch tags from. When not specified, all tags from all collections will be retrieved.To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "raindrop-mcp-python" '{"command":"uv","args":["run","mcp","dev","server.py"]}'
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-mcp-python": {
"command": "uv",
"args": [
"run",
"mcp",
"dev",
"server.py"
]
}
}
}
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-mcp-python": {
"command": "uv",
"args": [
"run",
"mcp",
"dev",
"server.py"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect