mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-17 23:53:24 +02:00
fix zed config
This commit is contained in:
@@ -67,36 +67,6 @@ Add to your Claude settings:
|
|||||||
```
|
```
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
### Configure for Zed
|
|
||||||
|
|
||||||
Add to your Zed settings.json:
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Using uvx</summary>
|
|
||||||
|
|
||||||
```json
|
|
||||||
"context_servers": [
|
|
||||||
"mcp-server-fetch": {
|
|
||||||
"command": "uvx",
|
|
||||||
"args": ["mcp-server-fetch"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Using pip installation</summary>
|
|
||||||
|
|
||||||
```json
|
|
||||||
"context_servers": {
|
|
||||||
"mcp-server-fetch": {
|
|
||||||
"command": "python",
|
|
||||||
"args": ["-m", "mcp_server_fetch"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
|
|
||||||
### Customization - robots.txt
|
### Customization - robots.txt
|
||||||
|
|
||||||
By default, the server will obey a websites robots.txt file if the request came from the model (via a tool), but not if
|
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
|
|||||||
|
|
||||||
### Customization - User-agent
|
### Customization - User-agent
|
||||||
|
|
||||||
By default, depending on if the request came from the model (via a tool), or was user initiated (via a prompt), the
|
By default, depending on if the request came from the model (via a tool), or was user initiated (via a prompt), the
|
||||||
server will use either the user-agent
|
server will use either the user-agent
|
||||||
```
|
```
|
||||||
ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)
|
ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)
|
||||||
|
|||||||
@@ -117,8 +117,10 @@ Add to your Zed settings.json:
|
|||||||
```json
|
```json
|
||||||
"context_servers": [
|
"context_servers": [
|
||||||
"mcp-server-git": {
|
"mcp-server-git": {
|
||||||
"command": "uvx",
|
"command": {
|
||||||
"args": ["mcp-server-git"]
|
"path": "uvx",
|
||||||
|
"args": ["mcp-server-git"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
@@ -130,8 +132,10 @@ Add to your Zed settings.json:
|
|||||||
```json
|
```json
|
||||||
"context_servers": {
|
"context_servers": {
|
||||||
"mcp-server-git": {
|
"mcp-server-git": {
|
||||||
"command": "python",
|
"command": {
|
||||||
"args": ["-m", "mcp_server_git"]
|
"path": "python",
|
||||||
|
"args": ["-m", "mcp_server_git"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -91,8 +91,10 @@ Add to your Zed settings.json:
|
|||||||
```json
|
```json
|
||||||
"context_servers": [
|
"context_servers": [
|
||||||
"mcp-server-sentry": {
|
"mcp-server-sentry": {
|
||||||
"command": "uvx",
|
"command": {
|
||||||
"args": ["mcp-server-sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
|
"path": "uvx",
|
||||||
|
"args": ["mcp-server-sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user