- Home
- MCP servers
- Raindrop
Raindrop
- javascript
20
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"egoist-raindrop-mcp": {
"command": "npx",
"args": [
"-y",
"raindrop-mcp"
],
"env": {
"RAINDROP_ACCESS_TOKEN": "<your-token>"
}
}
}
}You can connect to Raindrop.io from an MCP client by running the raindrop-mcp service. This server lets you search, create, and organize bookmarks through MCP-compatible requests, making Raindrop.io behave like a programmable data source for your automations and chat environments.
How to use
To use raindrop-mcp, start the server with your Raindrop.io access token and then connect to it from your MCP client. The server exposes capabilities to search bookmarks, create new bookmarks, and retrieve all collections. When you connect, you will issue MCP-style requests that translate to Raindrop.io actions behind the scenes.
How to install
Prerequisites you need before installation: a modern Node.js runtime and npm or yarn for package management.
Install and run the MCP server using the provided command. Replace <your-token> with your Raindrop.io access token you obtained when creating an application and a test token.
Available tools
searchBookmarks
Search bookmarks in Raindrop.io using your query and optional filters; returns matching bookmarks.
createBookmark
Create a new bookmark in a Raindrop.io collection with given title, link, and tags.
getAllCollections
Retrieve all collections from your Raindrop.io account to present as MCP data sources or options.