Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

raindrop-mcp

MCP.Pizza Chef: egoist

raindrop-mcp is an MCP server that integrates Raindrop.io's bookmarking service with the Model Context Protocol. It allows real-time interaction with Raindrop.io by enabling bookmark search, creation, and retrieval of all collections. This server supports multiple run modes including stdio, SSE, and HTTP streaming, making it flexible for various MCP host environments. It requires an access token from Raindrop.io for authentication and is ideal for developers looking to incorporate bookmark management into AI workflows.

Use This MCP server To

Search Raindrop.io bookmarks via natural language queries Create new bookmarks in Raindrop.io from AI prompts Retrieve all bookmark collections for context-aware workflows Integrate Raindrop.io bookmark data into AI-powered knowledge bases Automate bookmark organization using LLM-driven commands

README

raindrop-mcp

An MCP server for Raindrop.io.

This project is sponsored by ChatWise, an all-in-one LLM chatbot with first-class MCP support.

Usage

Create an access token on Raindrop.io:

  1. create an application
  2. create a test token
  3. copy the test token

JSON config for raindrop-mcp as stdio server:

{
  "mcpServers": {
    "raindrop": {
      "command": "npx",
      "args": ["-y", "raindrop-mcp"],
      "env": {
        "RAINDROP_ACCESS_TOKEN": "<your-token>"
      }
    }
  }
}

Alternatively you can run it as:

  • sse server: npx -y raindrop-mcp --sse
  • streamable http server: npx -y raindrop-mcp --http

Capabilities

  • Search bookmarks
  • Create bookmarks
  • Get all collections

License

MIT.

raindrop-mcp FAQ

How do I authenticate raindrop-mcp with Raindrop.io?
You create an access token on Raindrop.io by creating an application and generating a test token, then set it as RAINDROP_ACCESS_TOKEN in the environment.
What run modes does raindrop-mcp support?
It supports stdio server mode, SSE server mode, and streamable HTTP server mode for flexible integration.
Can raindrop-mcp create bookmarks as well as search them?
Yes, it supports both creating new bookmarks and searching existing ones.
Is raindrop-mcp open source and under what license?
Yes, it is open source and licensed under the MIT license.
Can raindrop-mcp be used with multiple LLM providers?
Yes, it is compatible with any MCP host that supports OpenAI, Claude, Gemini, and other LLM providers.
How do I configure raindrop-mcp in an MCP host?
Use the provided JSON config snippet to run it as a stdio server or run it with command line flags for SSE or HTTP modes.
Does raindrop-mcp support real-time updates?
Yes, when run in SSE or HTTP streaming mode, it can provide real-time bookmark data updates.