MCP Catalogs
Home

raindrop-io-mcp-server vs everything

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

raindrop-io-mcp-server
by hiromitsusasaki
everything
by modelcontextprotocol
Stars★ 72★ 85,748
30d uses
Score4377
Official
Categories
ProductivityKnowledge GraphAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

raindrop-io-mcp-server · Summary

MCP server enabling LLMs to create, search, and filter Raindrop.io bookmarks.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

raindrop-io-mcp-server · Use cases

  • LLM assistants can bookmark resources during conversations for later retrieval
  • AI-powered organization and tagging of bookmarked content
  • Automated bookmark management based on content analysis

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

raindrop-io-mcp-server · Install

Installation

Via Smithery (Recommended)

npx -y @smithery/cli install @hiromitsusasaki/raindrop-io-mcp-server --client claude

Manual Installation

  1. Clone the repository:
git clone https://github.com/hiromitsusasaki/raindrop-io-mcp-server
cd raindrop-io-mcp-server
  1. Install dependencies:
npm install
  1. Set up environment variables:

Create a .env file and add your Raindrop.io API token

RAINDROP_TOKEN=your_access_token_here
  1. Build:
npm run build

Claude Desktop Configuration

Add to your Claude Desktop config file (claude_desktop_config.json):

{
  "mcpServers": {
    "raindrop": {
      "command": "node",
      "args": ["PATH_TO_BUILD/index.js"],
      "env": {
        "RAINDROP_TOKEN": "your_access_token_here"
      }
    }
  }
}

Restart Claude Desktop after making changes.

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.