This MCP server for Raindrop.io allows you to interact with your Raindrop bookmarks directly from Claude Desktop using simple, human language. You can manage collections, view bookmarks, and organize your personal knowledge system through natural conversation.
Create a .env
file in the project's root directory containing:
RAINDROP_TOKEN="your_token_here"
To install the server to Claude Desktop:
uv run mcp install server.py
To run the server in development mode:
uv run mcp dev server.py
After installation, you can interact with your Raindrop bookmarks by asking Claude questions or giving commands like:
create_collection
title
(name of the collection)view
(list, grid, masonry, simple), public
(boolean), parent_id
(ID for nested collections)update_collection
collection_id
title
, view
, public
, parent_id
, expanded
delete_collection
collection_id
empty_trash
Permanently deletes all items in the trash.
get_raindrop
raindrop_id
get_raindrops
collection_id
(use 0 for all, -1 for unsorted, -99 for trash)search
, sort
, page
, perpage
, nested
update_raindrop
raindrop_id
title
, excerpt
, link
, important
, tags
, collection_id
, cover
, type
, order
, pleaseParse
update_many_raindrops
collection_id
ids
, important
, tags
, cover
, target_collection_id
, nested
, search
get_tags
collection_id
(retrieves all tags when omitted)This MCP server can be paired with the Firecrawl MCP server to read and classify URLs in your bookmarks, creating a powerful system for managing and understanding your saved content.
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 > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
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 explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.