raindrop-mcp

Raindrop MCP Server

178
Stars
26
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/adeze/raindrop-mcp

Getting Started

Guides for using skills like raindrop-mcp.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Raindrop.io MCP Server

smithery badge npm version Claude Desktop MCPB

Connect Raindrop.io to your AI assistant with a simple MCP server. Use it to organize, search, and manage bookmarks with natural language.

Raindrop.io now also offers a hosted Streamable HTTP MCP endpoint (https://api.raindrop.io/rest/v2/ai/mcp) in beta for Pro users. Use that when its hosted toolset is sufficient; use this package for local stdio, self-hosted HTTP, and its additional library-management tools.

What it can do

  • Create, update, and delete collections and bookmarks
  • Search bookmarks by tags, domain, type, date, and more
  • Manage tags (list, rename, merge, delete)
  • Read highlights from bookmarks
  • Bulk edit bookmarks in a collection
  • Audit broken links and duplicates, and manage trash

Tools

  • diagnostics - Server diagnostic information and library health metrics
  • collection_list - List all collections as a flat list
  • get_collection_tree - Hierarchical view of collections with full breadcrumb paths
  • collection_manage - Create, update, or delete collections
  • bookmark_search - Advanced search with filters, tags, and pagination
  • bookmark_manage - Create, update, or delete bookmarks
  • get_raindrop - Fetch a single bookmark by ID
  • list_raindrops - List bookmarks for a collection with pagination
  • get_suggestions - AI-powered organization advice (tags/collections) for a URL or bookmark
  • suggest_tags - Suggest relevant tags from bookmark metadata using AI-assisted analysis
  • bulk_edit_raindrops - Bulk update, move, or remove bookmarks in a specific collection
  • tag_manage - Rename, merge, or delete tags
  • highlight_manage - Create, update, or delete highlights
  • library_audit - Scan library for broken links, duplicates, and untagged items
  • empty_trash - Permanently empty the trash (requires confirmation)
  • cleanup_collections - Remove empty collections (requires confirmation)
  • remove_duplicates - Find and remove duplicate bookmarks with safe confirmation flow

Install

Quick Start (One-Liners)

ToolOne-Liner Command
Gemini CLIgemini extensions install https://github.com/adeze/raindrop-mcp
Codex CLIcodex mcp add raindrop -- npx -y @adeze/raindrop-mcp
Claude Codeclaude mcp add raindrop -- npx -y @adeze/raindrop-mcp
GitHub Copilotgh copilot config mcp add raindrop -- npx -y @adeze/raindrop-mcp
Vercel Skillsnpx skills add adeze/raindrop-mcp

Note: For tools adding an MCP server via npx, you must have the RAINDROP_ACCESS_TOKEN environment variable set in your shell or the tool's environment config.

Vercel Skills (npx skills)

This project is compatible with the Vercel Skills system. All necessary manifests are present:

  • manifest.json: Standard MCP manifest for server definition.
  • SKILL.md: Standardized skill description for agent discovery.
  • mcp.json: Root configuration for MCP clients and registries.

To add this server to your local skill directory:

npx skills add adeze/raindrop-mcp --global

To contribute this to the Vercel Skills Registry, submit a Pull Request adding this repository URL to the registry.

Claude Desktop (MCPB)

Download the latest raindrop-mcp.mcpb from the GitHub Release and add it to Claude Desktop:

In Claude Desktop, add the bundle and set this environment variable:

  • RAINDROP_ACCESS_TOKEN (from your Raindrop.io integrations settings)

NPX (CLI)

Set your API token as an environment variable and run:

export RAINDROP_ACCESS_TOKEN=YOUR_RAINDROP_ACCESS_TOKEN
npx @adeze/raindrop-mcp

Manual MCP config (mcp.json)

Add this to your MCP client configuration:

{
  "servers": {
    "raindrop": {
      "type": "stdio",
      "command": "npx",
      "args": ["@adeze/raindrop-mcp@latest"],
      "env": {
        "RAINDROP_ACCESS_TOKEN": "YOUR_RAINDROP_ACCESS_TOKEN"
      }
    }
  }
}

Requirements

Support

Release

This repository uses semantic-release as the only supported release flow.

How publishing works

  • Releases run from pushes to master via .github/workflows/ci.yml.
  • semantic-release analyzes Conventional Commit messages, computes the next version, updates CHANGELOG.md, tags/releases on GitHub, and publishes npm.
  • During release preparation, .releaserc.json syncs manifest.json, mcp.json, and gemini-extension.json, then builds raindrop-mcp.mcpb so the GitHub Release includes the bundle.

Pre-release dry-run

  • Run .github/workflows/release-dry-run.yml with Run workflow before cutting a public release.
  • This validates semantic version calculation, registry auth, and release pipeline behavior without publishing.

Required secrets

  • GITHUB_TOKEN is provided by GitHub Actions for release automation.

npm trusted publishing

  • npm publishing is configured via GitHub Actions OIDC trusted publishing.
  • NPM_TOKEN is not required for the standard CI release path.

Local validation before merge

bun run lint
bun run type-check
bun run test
bun run build

Commit message examples

  • fix: handle empty tag merge payload
  • feat: add collection path filter
  • feat!: remove deprecated search parameter

Do not manually bump versions, push release tags, or run manual npm publish commands for normal releases.

📋 Recent Enhancements (v2.4.x)

Smart Organization & Hierarchy

  • AI Suggestions: New get_suggestions tool provides organizational advice using Raindrop's API and MCP Sampling.
  • Collection Tree: get_collection_tree tool provides a hierarchical view with full breadcrumb paths.
  • Bulk Move: Added move operation to bulk_edit_raindrops for efficient library organization.
  • Pagination Support: Standardized list_raindrops and bookmark_search with pagination for large libraries.

Safety & Quality

  • Confirmation Logic: Destructive tools (empty_trash, cleanup_collections) now require explicit confirmation.
  • Standardized Naming: All tools now use consistent snake_case naming conventions.
  • CI/CD Pipeline: Enhanced GitHub Actions with automated linting, type-checking, and cross-transport tests.
  • Code Quality: Established ESLint and Prettier configurations for maintainable development.

📋 Previous Enhancements (v2.3.3)

Advanced Cleanup & Library Audit

📋 Previous Enhancements (v2.3.2)

MCP Resource Links Implementation

  • Modern resource content following current MCP SDK best practices
  • Efficient data access: tools return lightweight links instead of full payloads
  • Better performance: clients fetch full bookmark/collection data only when needed
  • Seamless integration with dynamic resource system (mcp://raindrop/{id})

SDK & API Updates

  • Updated to the latest supported MCP SDK in this repository
  • Modern tool registration with improved descriptions
  • Fixed API endpoints and path parameters
  • All core tools fully functional

Tool Optimization

  • Resource-efficient responses for bookmark/collection lists
  • Dynamic resource access via mcp://collection/{id} and mcp://raindrop/{id}
  • Better client UX with lighter list payloads
  • Full MCP compliance with official SDK patterns

Service Layer Improvements

  • Reduced code through extracted common helpers
  • Consistent error handling and response processing
  • Enhanced type safety with generic handlers
  • Centralized endpoint building

Testing Improvements

  • Stronger end-to-end coverage for MCP tool execution
  • Expanded integration tests for real-world client flows

MCP 2.0 Preparation (Bulk Ops)

  • Laying groundwork for MCP 2.0 bulk-operation workflows and tooling

OAuth (Coming Soon)

  • OAuth-based auth flow to simplify setup without manual tokens

Note

Apologies to anyone affected by the last couple of builds. Thank you for the patience and reports.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Frequently Asked Questions

What is raindrop-mcp?

raindrop-mcp is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by adeze. Raindrop MCP Server. It has 178 GitHub stars.

Is raindrop-mcp safe to use?

raindrop-mcp returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.

How do I install raindrop-mcp?

Clone the repository with "git clone https://github.com/adeze/raindrop-mcp" and add it to your Claude Code skills directory (see the Installation section above). raindrop-mcp ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

What programming language is raindrop-mcp written in?

raindrop-mcp is primarily written in TypeScript. It is open-source under adeze on GitHub, so you can review or fork the full source.

Are there alternatives to raindrop-mcp?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh raindrop-mcp against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP Servers
View details

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP Servers
View details

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP Servers
View details

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP Servers
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details