🩺 Troubleshooting
Fix common setup problems — missing server, auth errors, and where to find logs.
🔌 Server not showing in Claude
- Verify
MCP_RAINDROPIO_TOKENis set and non-empty. - Run
npm install && npm run build(for local installations). - Check that the path in your config is absolute.
- Restart Claude Desktop completely (Cmd+Q / Alt+F4).
🔐 Authentication errors
Test your token directly against the Raindrop.io API:
curl -H "Authorization: Bearer your-token-here" \
https://api.raindrop.io/rest/v1/userIf this returns your user info, the token is valid. If not, regenerate it from app.raindrop.io/settings/integrations.
📋 Checking logs
Claude Desktop:
- macOS:
~/Library/Logs/Claude/mcp*.log - Windows:
%APPDATA%\Claude\logs\mcp*.log
Claude Code CLI:
claude mcp get raindrop🔒 Security best practices
- Always use the
MCP_RAINDROPIO_TOKENenv var — never hardcode tokens. - Never commit your token to version control.
- Protect your
claude_desktop_config.json. - Rotate your token from the Raindrop.io integrations settings if you suspect it has been exposed.