npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-raindrop-server

v1.0.7

Published

A Model Context Protocol (MCP) server implementation for Raindrop.io API, providing bookmark management capabilities

Downloads

11

Readme

MCP Raindrop

基于 Raindrop.io API 的模型上下文协议(MCP)服务器实现,提供书签管理功能。

功能特点

  • 书签管理工具:
    • create-bookmark: 创建新书签,支持自定义元数据
    • search-bookmarks: 搜索书签,提供灵活的过滤选项
    • list-collections: 查看所有书签集合
  • 丰富的配置选项: 支持搜索、标签和书签组织的多种配置

MCP 配置使用

在你的 MCP 配置中添加 Raindrop.io 服务器:

{
  "mcpServers": {
    "raindrop": {
      "command": "npx",
      "args": ["-y", "@mcptools/mcp-raindrop"],
      "env": {
        "RAINDROP_TOKEN": "your-api-token"
      }
    }
  }
}

注意:请确保将 your-api-token 替换为你的实际 Raindrop.io API 令牌。你也可以在运行服务器之前将其设置为环境变量 RAINDROP_TOKEN

API 参考

书签工具

服务器提供三种可通过 MCP 调用的工具:

1. 创建书签

// 工具名称: create-bookmark
{
  url: "https://example.com/article",
  title: "示例文章",
  tags: ["示例", "文章"],
  collection: 123456
}

2. 搜索书签

// 工具名称: search-bookmarks
{
  query: "示例搜索",
  tags: ["示例"],
  page: 0,
  perpage: 20,
  sort: "-created",
  collection: 123456,
  word: false
}

3. 列出集合

// 工具名称: list-collections
{
}

响应格式

所有工具返回的响应格式如下:

{
  content: Array<{
    type: "text";
    text: string;
  }>;
}

搜索结果包含:

  • 标题
  • URL
  • 标签
  • 创建日期
  • 最后更新日期

集合信息包含:

  • 名称
  • ID
  • 书签数量
  • 父集合
  • 创建日期

错误处理

所有工具都包含适当的错误处理,并会在出现问题时抛出描述性的错误消息。

安装

npm install @mcptools/mcp-raindrop

或直接使用 npx:

npx @mcptools/mcp-raindrop

开发

环境要求

设置

  1. 克隆仓库
  2. 安装依赖:
npm install
  1. 设置 Raindrop.io API 令牌:
export RAINDROP_TOKEN=your_api_token

构建

npm run build

许可证

本项目基于 MIT 许可证开源。

支持

如有任何问题: