raindrop-io-mcp-server
Categories
Language:
TypeScript
Stars:
3
Forks:
1
Raindrop.io MCP Server
An integration that allows LLMs to interact with Raindrop.io bookmarks using the Model Context Protocol (MCP).
Features
- Create bookmarks
- Search bookmarks
- Filter by tags
Requirements
- Node.js 16 or higher
- Raindrop.io account and API token
Setup
- Clone the repository:
git clone https://github.com/hiromitsusasaki/raindrop-io-mcp-server
cd raindrop-io-mcp-server
- Install dependencies:
npm install
- Set up environment variables:
- Create a
.env
file and set your Raindrop.io API token
RAINDROP_TOKEN=your_access_token_here
- Build:
npm run build
Using with Claude for Desktop
- Open Claude for Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Add the following configuration:
{
"mcpServers": {
"raindrop": {
"command": "node",
"args": ["PATH_TO_BUILD/index.js"],
"env": {
"RAINDROP_TOKEN": "your_access_token_here"
}
}
}
}
- Restart Claude for Desktop
Available Tools
create-bookmark
Creates a new bookmark.
Parameters:
url
: URL to bookmark (required)title
: Title for the bookmark (optional)tags
: Array of tags (optional)collection
: Collection ID (optional)
search-bookmarks
Searches through bookmarks.
Parameters:
query
: Search query (required)tags
: Array of tags to filter by (optional)
Development
# Build for development
npm run build
# Start server
npm start
Security Notes
- Always manage API tokens using environment variables
- Set appropriate permissions for Claude for Desktop configuration files
- Restrict unnecessary file access
License
MIT License
Copyright (c) 2024 Hiromitsu Sasaki
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Related Links
Publisher info
hiromitsusasaki
Software Enginner