Skip to main content
The Model Context Protocol (MCP) server provides a standardized interface that allows any compatible AI model or agent to access your Raindrop.io data in a simple and secure way.
MCP is currently in beta for Pro users.

Server address

Our MCP server uses Streamable HTTP transport with OAuth 2.1 authentication at the following address:
https://api.raindrop.io/rest/v2/ai/mcp
On first connection your browser will open to authorize access to your Raindrop.io account.

Supported clients

https://mintcdn.com/raindropio-0c6b7ca1/GdpCiIhWcEST3eHX/assets/icon-claude.png?fit=max&auto=format&n=GdpCiIhWcEST3eHX&q=85&s=d951ff5c71ec3560329f2469f657f43a

Claude

claude.ai, Desktop, and Claude Code

ChatGPT

Plus, Pro, Business, Enterprise, Education
https://mintcdn.com/raindropio-0c6b7ca1/g7d24I8ROfahz7TM/assets/icon-vscode.png?fit=max&auto=format&n=g7d24I8ROfahz7TM&q=85&s=b05de90e9d3c005662c9eadb3188bfc2

VS Code

GitHub Copilot
https://mintcdn.com/raindropio-0c6b7ca1/g7d24I8ROfahz7TM/assets/icon-cursor.png?fit=max&auto=format&n=g7d24I8ROfahz7TM&q=85&s=1df8d38f4b98c0ec22c49a8759df8cfd

Cursor

AI code editor
https://mintcdn.com/raindropio-0c6b7ca1/g7d24I8ROfahz7TM/assets/icon-windsurf.png?fit=max&auto=format&n=g7d24I8ROfahz7TM&q=85&s=8580884be9c04f116b02691b98ac817b

Windsurf

AI code editor
https://mintcdn.com/raindropio-0c6b7ca1/g7d24I8ROfahz7TM/assets/icon-zed.png?fit=max&auto=format&n=g7d24I8ROfahz7TM&q=85&s=06b8947c127b95ddc398aff6a400c0b6

Zed

Code editor (via mcp-remote bridge)

Other MCP clients

Hundreds of other tools now support MCP servers. You can configure them to use Raindrop.io MCP server with the following settings:
  • Command: npx
  • Arguments: -y mcp-remote https://api.raindrop.io/rest/v2/ai/mcp
  • Environment: None
For cloud-based or other hosted clients not listed on this page, please reach out to info@raindrop.io so we can enable support.

FAQ

Run the following in Terminal to clear saved auth info, then try again:
rm -rf ~/.mcp-auth
If the issue persists, make sure you have the latest version of Node.js installed.
Yes, at the https://api.raindrop.io/rest/v2/ai/mcp endpoint. This is the only supported transport.
Yes. You can pass your Raindrop.io API token directly in the Authorization: Bearer <your-token> header instead of using the interactive OAuth flow.
Try this configuration instead:
{
	"mcpServers": {
		"raindrop": {
			"command": "wsl",
			"args": ["npx", "-y", "mcp-remote", "https://api.raindrop.io/rest/v2/ai/mcp"]
		}
	}
}