MCP Catalogs
Home

raindrop-mcp vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

raindrop-mcp
by adeze
ultimate_mcp_server
by Dicklesworthstone
Stars★ 163★ 149
30d uses
Score5085
Official
Categories
ProductivityKnowledge GraphAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit2 mo ago2 mo ago

raindrop-mcp · Summary

MCP server for Raindrop.io bookmark management with comprehensive tools for organizing, searching, and editing bookmarks through AI assistants.

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

raindrop-mcp · Use cases

  • Organize bookmarks with AI-powered suggestions across collections
  • Search and manage large bookmark libraries efficiently
  • Audit and clean up bookmark collections by finding duplicates and broken links

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

raindrop-mcp · Install

Installation

Quick Start (One-Liners)

| Tool | One-Liner Command | | :----------------- | :----------------------------------------------------------------- | | **Gemini CLI** | gemini extensions install https://github.com/adeze/raindrop-mcp | | **Codex CLI** | codex mcp add raindrop -- npx -y @adeze/raindrop-mcp | | **Claude Code** | claude mcp add raindrop -- npx -y @adeze/raindrop-mcp | | **GitHub Copilot** | gh copilot config mcp add raindrop -- npx -y @adeze/raindrop-mcp | | **Vercel Skills** | npx skills add adeze/raindrop-mcp |

Claude Desktop (MCPB)

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

  • RAINDROP_ACCESS_TOKEN (from your Raindrop.io integrations settings)

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"
      }
    }
  }
}

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.