Bookmark management via Raindrop.io
## Raindrop.io MCP Server: Bookmark Management The **Raindrop.io MCP Server** integrates Raindrop.io's powerful bookmark manager into Google Antigravity, enabling developers to save, organize, and search bookmarks through AI-assisted knowledge curation. ### Why Raindrop.io MCP? - **Visual Collections**: Organize bookmarks in visual collections - **Full-Text Search**: Search within saved pages, not just titles - **Permanent Copies**: Save permanent copies of web pages - **Tags & Highlights**: Tag and highlight important content - **Cross-Platform**: Sync across all devices and browsers ### Key Features #### 1. Bookmark Management ```javascript // Save bookmark const bookmark = await raindrop.createRaindrop({ link: "https://example.com/article", title: "Advanced TypeScript Patterns", excerpt: "A comprehensive guide to advanced TypeScript...", collection: { id: 12345 }, tags: ["typescript", "programming", "reference"] }); // Search bookmarks const results = await raindrop.search({ word: "authentication API", collection: "all", sort: "created", perpage: 25 }); // Get bookmark details const details = await raindrop.getRaindrop({ id: bookmark.id }); // Update bookmark await raindrop.updateRaindrop({ id: bookmark.id, important: true, tags: [...bookmark.tags, "important"] }); ``` #### 2. Collection Organization ```javascript // List collections const collections = await raindrop.listCollections(); // Create collection const collection = await raindrop.createCollection({ title: "Backend Resources", description: "Backend development articles and docs", parent: { id: parentCollectionId }, cover: ["https://example.com/icon.png"] }); // Get collection contents const bookmarks = await raindrop.getCollectionRaindrops({ id: collection.id, sort: "-created" }); // Bulk move bookmarks await raindrop.bulkMove({ ids: [id1, id2, id3], collection: { id: newCollectionId } }); ``` ### Configuration ```json { "mcpServers": { "raindrop": { "command": "npx", "args": ["-y", "@anthropic/mcp-raindrop"], "env": { "RAINDROP_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Resource Curation**: Build organized collections of development resources. **Research Management**: Save and organize research materials with full-text search. **Team Knowledge**: Share curated bookmark collections with team members. The Raindrop.io MCP Server brings intelligent bookmarking to your development workflow.
{
"mcpServers": {
"raindrop": {
"mcpServers": {
"raindrop": {
"env": {
"RAINDROP_ACCESS_TOKEN": "YOUR_ACCESS_TOKEN"
},
"args": [
"-y",
"raindrop-mcp"
],
"command": "npx"
}
}
}
}
}