drio
Open app

Raindrop.io MCP Server

Source

An integration that allows LLMs to interact with Raindrop.io bookmarks using the Model Context Protocol (MCP).

Catalog onlyCatalog onlySTDIO

Overview

Raindrop.io MCP Server is an integration that allows Large Language Models (LLMs) to interact with Raindrop.io bookmarks using the Model Context Protocol (MCP).

To use the Raindrop.io MCP Server, clone the repository, install dependencies, set up your Raindrop.io API token in the environment variables, and configure it with Claude for Desktop.

  • Create bookmarks - Search bookmarks - Filter bookmarks by tags
  1. Automating bookmark management for LLMs.
  2. Enhancing LLMs with the ability to retrieve and manage bookmarks.
  3. Integrating bookmark functionalities into applications using the Model Context Protocol.

Add to your AI client

Use these steps to connect Raindrop.io MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "raindrop-io-mcp-server-hiromitsusasaki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-raindrop-io-mcp-server-hiromitsusasaki"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "raindrop-io-mcp-server-hiromitsusasaki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-raindrop-io-mcp-server-hiromitsusasaki"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "raindrop-io-mcp-server-hiromitsusasaki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-raindrop-io-mcp-server-hiromitsusasaki"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "raindrop-io-mcp-server-hiromitsusasaki": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-raindrop-io-mcp-server-hiromitsusasaki"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "raindrop-io-mcp-server-hiromitsusasaki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-raindrop-io-mcp-server-hiromitsusasaki"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "raindrop-io-mcp-server-hiromitsusasaki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-raindrop-io-mcp-server-hiromitsusasaki"
      ]
    }
  }
}

FAQ

What are the requirements to run the server?

You need Node.js 16 or higher and a Raindrop.io account with an API token.

Is there a license for this project?

Yes, it is licensed under the MIT License.

How can I contribute to the project?

You can fork the repository, create a feature branch, commit your changes, and open a Pull Request.