Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables Claude Code and other MCP clients to manage bookmarks, collections, and tags in Raindrop.io accounts via natural language.

README.md

Raindrop.io MCP Server

A Model Context Protocol (MCP) server for interacting with the Raindrop.io API. This server enables Claude Code and other MCP clients to manage bookmarks, collections, and tags in your Raindrop.io account.

Features

Raindrop (Bookmark) Management

  • Get single or multiple bookmarks
  • Search bookmarks across collections
  • Create new bookmarks with metadata
  • Update existing bookmarks
  • Delete bookmarks

Collection Management

  • List all collections (root and nested)
  • Get specific collection details
  • Create new collections
  • Update collection properties
  • Delete collections

Tag Management

  • Get all tags (optionally filtered by collection)
  • Rename tags
  • Merge multiple tags into one
  • Delete tags

User Information

  • Get current user profile and settings

Installation

Option 1: Easy Install with MCPB (Recommended)

The easiest way to install this MCP server is using the MCP Bundle (MCPB) file with Claude Desktop:

  1. Download the raindrop-mcp-server.mcpb file from this repository
  2. Double-click the file (or drag it into Claude Desktop)
  3. Enter your API token when prompted - get it from https://app.raindrop.io/settings/integrations

That's it! The bundle contains everything needed and will automatically configure itself in Claude Desktop.

Option 2: Manual Installation

If you prefer manual installation or are using a different MCP client:

cd raindrop-mcp-server
npm install

Then proceed with the manual configuration below.

Configuration

Manual Configuration (Skip if using MCPB)

1. Get Your Raindrop.io API Token

  1. Visit https://app.raindrop.io/settings/integrations
  2. Create a new app or open an existing one
  3. Copy the Test token from your app settings

2. Configure MCP Settings

Add the server to your Claude Code MCP settings file (~/.config/claude-code/mcp.json or equivalent):

{
  "mcpServers": {
    "raindrop": {
      "command": "node",
      "args": ["/home/user/raindrop-mcp-server/src/index.js"],
      "env": {
        "RAINDROP_TOKEN": "your-token-here"
      }
    }
  }
}

Replace your-token-here with your actual Raindrop.io test token.

Alternative: You can also set the token as an environment variable:

export RAINDROP_TOKEN="your-token-here"

Available Tools

Bookmark Tools

get_raindrop

Get a single bookmark by ID.

Parameters:

  • id (string, required): The raindrop ID

get_raindrops

Get bookmarks from a collection with filtering and pagination.

Parameters:

  • collectionId (number, optional): Collection ID (0=all, -1=unsorted, -99=trash, default: 0)
  • search (string, optional): Search query
  • page (number, optional): Page number (0-indexed, default: 0)
  • perpage (number, optional): Results per page (max 50, default: 25)
  • sort (string, optional): Sort order (-created, created, score, title, etc.)
  • nested (boolean, optional): Include bookmarks from nested collections

search_raindrops

Search for bookmarks across all collections.

Parameters:

  • query (string, required): Search query text
  • page (number, optional): Page number
  • perpage (number, optional): Results per page

create_raindrop

Create a new bookmark.

Parameters:

  • link (string, required): URL to bookmark
  • title (string, optional): Bookmark title
  • excerpt (string, optional): Description
  • note (string, optional): Personal notes
  • collection (number, optional): Collection ID (-1 for Unsorted)
  • tags (array, optional): Array of tag strings
  • important (boolean, optional): Mark as favorite
  • pleaseParse (object, optional): Auto-parse metadata from URL

update_raindrop

Update an existing bookmark.

Parameters:

  • id (string, required): The raindrop ID to update
  • link, title, excerpt, note, collection, tags, important (optional): Fields to update

delete_raindrop

Delete a bookmark (moves to trash, or permanently deletes if already in trash).

Parameters:

  • id (string, required): The raindrop ID to delete

Collection Tools

get_collections

Get all root-level collections.

get_child_collections

Get all nested (child) collections.

get_collection

Get a specific collection by ID.

Parameters:

  • id (string, required): The collection ID

create_collection

Create a new collection.

Parameters:

  • title (string, required): Collection name
  • view (string, optional): Display view (list, grid, masonry)
  • sort (number, optional): Sort order
  • public (boolean, optional): Public accessibility
  • parentId (number, optional): Parent collection ID for nesting

update_collection

Update an existing collection.

Parameters:

  • id (string, required): The collection ID
  • title, view, sort, public, parentId, expanded (optional): Fields to update

delete_collection

Delete a collection by ID.

Parameters:

  • id (string, required): The collection ID

Tag Tools

get_tags

Get all tags, optionally filtered by collection.

Parameters:

  • collectionId (number, optional): Filter tags by collection

rename_tag

Rename a tag across all or specific collection.

Parameters:

  • oldTag (string, required): Current tag name
  • newTag (string, required): New tag name
  • collectionId (number, optional): Limit scope to collection

merge_tags

Merge multiple tags into one.

Parameters:

  • oldTags (array, required): Array of tag names to merge
  • newTag (string, required): Target tag name
  • collectionId (number, optional): Limit scope to collection

delete_tags

Delete one or more tags.

Parameters:

  • tags (array, required): Array of tag names to delete
  • collectionId (number, optional): Limit scope to collection

User Tools

get_user

Get current user information and profile.

Usage Examples

Once configured in Claude Code, you can interact with your Raindrop.io bookmarks naturally:

"Show me my recent bookmarks"
"Create a bookmark for https://example.com with tags 'programming' and 'tutorial'"
"Search for bookmarks about 'machine learning'"
"Create a new collection called 'Research Papers'"
"Move bookmark ID 12345 to collection ID 67890"
"Get all my tags"
"Rename tag 'js' to 'javascript'"

API Rate Limits

The Raindrop.io API allows up to 120 requests per minute per authenticated user. The rate limit headers will be included in responses:

  • X-RateLimit-Limit
  • RateLimit-Remaining
  • X-RateLimit-Reset

About MCP Bundles (MCPB)

This project includes an MCP Bundle (.mcpb file) for simplified installation. MCPB is a standardized format for packaging MCP servers with all their dependencies and configuration metadata.

Benefits of using MCPB:

  • One-click installation in Claude Desktop
  • No manual configuration of paths or dependencies
  • Self-contained - includes all node_modules and code
  • Automatic updates - easier to distribute new versions
  • User-friendly - prompts for required configuration (like API tokens)

The .mcpb file is essentially a zip archive containing:

  • Server source code
  • All npm dependencies
  • A manifest.json with metadata and configuration schema
  • License and documentation

Learn more about MCP Bundles: https://github.com/anthropics/mcpb

Documentation

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.