Skip to content

Commit 4b9bddc

Browse files
authored
Merge pull request #114 from anjor/anjor/fix-zed-config
fix zed config
2 parents bf4d8f6 + 453e292 commit 4b9bddc

File tree

3 files changed

+13
-37
lines changed

3 files changed

+13
-37
lines changed

src/fetch/README.md

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -67,36 +67,6 @@ Add to your Claude settings:
6767
```
6868
</details>
6969

70-
### Configure for Zed
71-
72-
Add to your Zed settings.json:
73-
74-
<details>
75-
<summary>Using uvx</summary>
76-
77-
```json
78-
"context_servers": [
79-
"mcp-server-fetch": {
80-
"command": "uvx",
81-
"args": ["mcp-server-fetch"]
82-
}
83-
],
84-
```
85-
</details>
86-
87-
<details>
88-
<summary>Using pip installation</summary>
89-
90-
```json
91-
"context_servers": {
92-
"mcp-server-fetch": {
93-
"command": "python",
94-
"args": ["-m", "mcp_server_fetch"]
95-
}
96-
},
97-
```
98-
</details>
99-
10070
### Customization - robots.txt
10171

10272
By default, the server will obey a websites robots.txt file if the request came from the model (via a tool), but not if
@@ -105,7 +75,7 @@ the request was user initiated (via a prompt). This can be disabled by adding th
10575

10676
### Customization - User-agent
10777

108-
By default, depending on if the request came from the model (via a tool), or was user initiated (via a prompt), the
78+
By default, depending on if the request came from the model (via a tool), or was user initiated (via a prompt), the
10979
server will use either the user-agent
11080
```
11181
ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)

src/git/README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,10 @@ Add to your Zed settings.json:
117117
```json
118118
"context_servers": [
119119
"mcp-server-git": {
120-
"command": "uvx",
121-
"args": ["mcp-server-git"]
120+
"command": {
121+
"path": "uvx",
122+
"args": ["mcp-server-git"]
123+
}
122124
}
123125
],
124126
```
@@ -130,8 +132,10 @@ Add to your Zed settings.json:
130132
```json
131133
"context_servers": {
132134
"mcp-server-git": {
133-
"command": "python",
134-
"args": ["-m", "mcp_server_git"]
135+
"command": {
136+
"path": "python",
137+
"args": ["-m", "mcp_server_git"]
138+
}
135139
}
136140
},
137141
```

src/sentry/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ Add to your Zed settings.json:
9191
```json
9292
"context_servers": [
9393
"mcp-server-sentry": {
94-
"command": "uvx",
95-
"args": ["mcp-server-sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
94+
"command": {
95+
"path": "uvx",
96+
"args": ["mcp-server-sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
97+
}
9698
}
9799
],
98100
```

0 commit comments

Comments
 (0)