Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"raindrop": {
"env": {
"RAINDROP_TOKEN": "your-test-token"
},
"command": "~/.local/bin/my-raindrop-io-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Raindrop.io のブックマークを操作する Model Context Protocol (MCP) サーバー。Go で実装。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for My Raindrop Io Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Raindrop.io のブックマークを操作する Model Context Protocol (MCP) サーバー。Go で実装。
| ツール | 説明 | アノテーション |
|---|---|---|
search_bookmarks | ブックマークを検索 | ReadOnly |
get_bookmark | ID を指定して詳細取得 | ReadOnly |
create_bookmark | 新しいブックマークを作成 | — |
update_bookmark | 既存のブックマークを更新 | — |
delete_bookmark | ブックマークを削除 | Destructive |
| ツール | 説明 | アノテーション |
|---|---|---|
list_collections | コレクション一覧を取得 | ReadOnly |
create_collection | 新しいコレクションを作成 | — |
update_collection | 既存のコレクションを更新 | — |
インストールスクリプト(~/.local/bin/ に配置):
curl -fsSL https://raw.githubusercontent.com/nnno/my-raindrop-io-mcp-server/main/install.sh | sh
Go ユーザーの場合(Go 1.25+ が必要):
go install github.com/nnno/my-raindrop-io-mcp-server@latest
ソースからビルドする場合(Go 1.25+ が必要):
make install
Claude Desktop (claude_desktop_config.json) の場合:
{
"mcpServers": {
"raindrop": {
"command": "~/.local/bin/my-raindrop-io-mcp-server",
"env": {
"RAINDROP_TOKEN": "your-test-token"
}
}
}
}
Claude Code の場合:
claude mcp add raindrop ~/.local/bin/my-raindrop-io-mcp-server -e RAINDROP_TOKEN=your-test-token
DDD ベースのレイヤードアーキテクチャを採用。
main.go # エントリポイント(DI・stdio 起動)
internal/
├── domain/
│ ├── entity/ # Bookmark, Collection, DomainError
│ └── repository/ # インターフェース定義
│ └── mock/ # mockgen 生成モック
├── application/
│ └── usecase/ # バリデーション・ビジネスロジック
├── infra/
│ └── raindrop/ # Raindrop.io REST API クライアント
└── handler/ # MCP ツール登録・リクエスト変換
依存方向: handler → usecase → (domain/entity + domain/repository) ← infra/raindrop
make build # ビルド(バージョン情報を埋め込み)
make test # テスト
make test-race # テスト(レース検出付き)
make lint # リント
make mock # モック再生成
MIT