Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,21 @@ Update your Windsurf configuration file at `~/.codeium/windsurf/mcp_config.json`
}
```

#### Connecting Zed

Add this MCP to your Zed context servers config:
```json
{
"context_servers": {
"gitmcp": {
"url": "https://gitmcp.io/{owner}/{repo}"
}
}
}
```

For more details, see the [Zed context servers docs](https://zed.dev/docs/assistant/context-servers).

#### Connecting VSCode

Update your VSCode configuration file at `.vscode/mcp.json`:
Expand Down
35 changes: 35 additions & 0 deletions app/components/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ export default function Content({
return "https://www.cursor.com/favicon.ico";
case "Claude Desktop":
return "https://claude.ai/favicon.ico";
case "Zed":
return "https://zed.dev/favicon.ico";
case "Windsurf":
return "https://codeium.com/favicon.ico";
case "VSCode":
Expand Down Expand Up @@ -239,6 +241,7 @@ export default function Content({
"Cursor",
"Claude Desktop",
"Windsurf",
"Zed",
"VSCode",
"Cline",
"Highlight AI",
Expand Down Expand Up @@ -364,6 +367,25 @@ export default function Content({
/>
</div>
</div>
<div id="tab-zed" className="tab-content hidden">
<div className="bg-slate-50 p-3 sm:p-4 rounded-md border border-slate-200">
<p className="text-sm text-slate-700 mb-2">
Add this MCP to your Zed context servers config:
</p>
<CodeExample
code={`{
"context_servers": {
"${serverName}": {
"url": "${url}"
}
}
}`}
id="zed"
name="Zed"
popoutUrl="https://zed.dev/docs/assistant/context-servers"
/>
</div>
</div>
<div id="tab-vscode" className="tab-content hidden">
<div className="bg-slate-50 p-3 sm:p-4 rounded-md border border-slate-200">
<p className="text-sm text-slate-700 mb-2">
Expand Down Expand Up @@ -624,6 +646,19 @@ export default function Content({
/>
Windsurf
</a>
<a
href="https://zed.dev"
className="text-blue-600 hover:text-blue-800 flex items-center transition-colors"
target="_blank"
rel="noopener noreferrer"
>
<img
src={getToolFaviconUrl("Zed")}
alt="Zed"
className="h-6 w-6 mr-2"
/>
Zed
</a>
<a
href="https://code.visualstudio.com/"
className="text-blue-600 hover:text-blue-800 flex items-center transition-colors"
Expand Down