raindrop-io-mcp-server
by hiromitsusasaki·★ 72·综合分 43
MCP 服务器使 LLM 能创建、搜索和过滤 Raindrop.io 书签。
productivityknowledge-graphai-llm
13
Forks
18
活跃 Issue
12 个月前
最近提交
2 天前
收录于
概述
这是一个实现良好的 MCP 服务器,将 LLM 与 Raindrop.io 书签管理连接起来。它提供了创建书签、搜索现有书签和按标签筛选的工具,使 AI 助手能够直接与您的书签集合交互。TypeScript 的实现提供了类型安全性和可维护性。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
你:LLM 助手可以在对话中收藏资源供以后检索
你:AI 驱动的书签内容组织和标签管理
你:基于内容分析的自动化书签管理
你:如何获取 Raindrop.io API 令牌?
你:我可以将此 MCP 服务器与 Claude Desktop 以外的客户端一起使用吗?
什么时候选它
如果您使用 Raindrop.io 进行书签管理,并希望 AI 助手与您的书签集合交互,请选择此服务器。
什么时候不要选它
如果您需要访问 Raindrop.io 之外的高级功能,或者您使用不同的书签管理器,请不要选择此服务器。
此 server 暴露的工具
从 README 抽取出 2 个工具create-bookmarkurl (required), title (optional), tags (optional), collection (optional)Creates a new bookmark with the provided URL, title, tags, and collection.
search-bookmarksquery (required), tags (optional)Searches through bookmarks using a query and optional tag filters.
可对比工具
notion-mcpreadwise-mcpweb-scraping-mcpbrowser-automation-mcp
安装
安装
通过 Smithery 安装(推荐)
npx -y @smithery/cli install @hiromitsusasaki/raindrop-io-mcp-server --client claude手动安装
- 克隆仓库:
git clone https://github.com/hiromitsusasaki/raindrop-io-mcp-server
cd raindrop-io-mcp-server- 安装依赖:
npm install- 设置环境变量:
创建 .env 文件并添加您的 Raindrop.io API 令牌
RAINDROP_TOKEN=your_access_token_here- 构建:
npm run buildClaude Desktop 配置
添加到您的 Claude Desktop 配置文件 (claude_desktop_config.json):
{
"mcpServers": {
"raindrop": {
"command": "node",
"args": ["PATH_TO_BUILD/index.js"],
"env": {
"RAINDROP_TOKEN": "your_access_token_here"
}
}
}
}更改后重启 Claude Desktop。
FAQ
- 如何获取 Raindrop.io API 令牌?
- 前往您的 Raindrop.io 账户设置,导航到 API 部分,然后生成新的访问令牌。请确保将其安全存储在您的环境变量中。
- 我可以将此 MCP 服务器与 Claude Desktop 以外的客户端一起使用吗?
- 是的,该服务器与任何兼容 MCP 的客户端兼容。您需要根据您特定客户端的要求进行配置,但核心服务器功能保持不变。
raindrop-io-mcp-server 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。