A Python-based MCP server for Raindrop.io that enables Claude Desktop to interact with bookmarking collections and tags through natural language. Developed by ddaltn, it provides tools for creating, updating, and deleting collections and raindrops, as well as managing tags within the Raindrop.io service. The implementation uses the Python MCP SDK and httpx for API communication, requiring only a Raindrop.io API token to function. This server can be paired with other MCP implementations like Firecrawl to enable streamlined automation and organization of bookmarking workflows.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Creates a new collection in Raindrop.io. Parameters: title (required), view (optional), public (optional), parent_id (optional)
Updates an existing collection in Raindrop.io. Parameters: collection_id (required), title (optional), view (optional), public (optional), parent_id (optional), expanded (optional)
Deletes a collection from Raindrop.io. The raindrops will be moved to Trash. Parameters: collection_id (required)
Empties the trash in Raindrop.io, permanently deleting all raindrops in it.
Gets a single raindrop from Raindrop.io by ID. Parameters: raindrop_id (required)
Gets multiple raindrops from a Raindrop.io collection. Parameters: collection_id (required), search (optional), sort (optional), page (optional), perpage (optional), nested (optional)
Gets tags from Raindrop.io. Parameters: collection_id (optional)
Updates an existing raindrop (bookmark) in Raindrop.io. Parameters: raindrop_id (required), title (optional), excerpt (optional), link (optional), important (optional), tags (optional), collection_id (optional), cover (optional), type (optional), order (optional), pleaseParse (optional)
Updates multiple raindrops at once within a collection. Parameters: collection_id (required), ids (optional), important (optional), tags (optional), cover (optional), target_collection_id (optional), nested (optional), search (optional)