An MCP server that allows Claude Desktop to access and manage Raindrop.io bookmarks through natural language commands, supporting operations for collections, raindrops, and tags.
This is a Model Context Protocol (MCP) server for Raindrop.io powered by the Python MCP SDK. It provides an easy way to read and update your bookmarks from the Raindrop personal knowledge management system from Claude Desktop in simple, human language. This can be paired with the Firecrawl MCP server to read the URLs associated with your bookmarks and classify them accordingly.
Set your Raindrop API token as an environment variable:
RAINDROP_TOKEN="your_token_here"
To run the server in development mode:
uv run mcp dev server.py
To install the server to Claude Desktop:
uv run mcp install server.py
This will start the server locally and allow you to test changes.
The server provides:
After installing the server to Claude Desktop, you can ask Claude questions and commands like:
Here is some example usage in Claude Desktop (paired with a Firecrawl MCP server):
Input to Claude Desktop as the classificaiton system:
Output from Claude Desktop:
The server provides the following MCP tools that let Claude Desktop perform actions on your Raindrop collections:
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 deleteEmpties the trash in Raindrop.io, permanently deleting all raindrops in it.
Gets 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 collectionsGets 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.Updates 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 '' to set screenshots for all)target_collection_id
: ID of collection to move raindrops tonested
: Include raindrops from nested collectionssearch
: Optional search query to filter which raindrops to updatePlease see pyproject.toml
for dependancies.
These will be installed automatically when using uv run mcp install
or uv run mcp dev
.
Contributions are welcome! Here's how you can contribute to this project:
git checkout -b feature/your-feature-name
)git commit -m 'Add some feature'
)git push origin feature/your-feature-name
)Please ensure your code follows the existing style and includes appropriate documentation.
This project is licensed under the MIT License - see the LICENSE.txt file for details.
Discover shared experiences
Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!