> ## Documentation Index
> Fetch the complete documentation index at: https://help.raindrop.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Zed

<Frame style={{padding: '48px'}}>
  <img src="https://mintcdn.com/raindropio-0c6b7ca1/g7d24I8ROfahz7TM/assets/icon-zed.png?fit=max&auto=format&n=g7d24I8ROfahz7TM&q=85&s=06b8947c127b95ddc398aff6a400c0b6" style={{width: '80px', height: '80px'}} width="120" height="120" data-path="assets/icon-zed.png" />
</Frame>

[Zed](https://zed.dev) is a high-performance code editor with built-in AI features. With this integration it can search, read, and organize your bookmarks via [MCP](/integrations/mcp).

Zed doesn't support HTTP MCP servers natively yet. Use [mcp-remote](https://www.npmjs.com/package/mcp-remote) as a bridge. Make sure you have [Node.js](https://nodejs.org) installed.

## Connecting

Add to your Zed settings JSON:

```json theme={null}
{
	"context_servers": {
		"raindrop": {
			"command": {
				"path": "npx",
				"args": ["-y", "mcp-remote", "https://api.raindrop.io/rest/v2/ai/mcp"]
			}
		}
	}
}
```
