You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,9 +74,9 @@ CrateDB MCP Server:
74
74
}
75
75
```
76
76
77
-
#### VS Code Copilot Chat
78
-
79
-
Add the following configuration to your VS Code settings:
77
+
#### VS Code
78
+
[Add an MCP server to your VS Code user settings] to enable the MCP server
79
+
across all workspaces in your `settings.json` file.
80
80
```json
81
81
{
82
82
"mcp": {
@@ -94,6 +94,18 @@ Add the following configuration to your VS Code settings:
94
94
"chat.mcp.enabled": true
95
95
}
96
96
```
97
+
[Add an MCP server to your VS Code workspace] to configure an MCP server for a
98
+
specific workspace per `.vscode/mcp.json` file. In this case, omit the
99
+
top-level `mcp` element, and start from `servers` instead.
100
+
101
+
Alternatively, VS Code can automatically detect and reuse MCP servers that
102
+
you defined in other tools, such as Claude Desktop.
103
+
See also [Automatic discovery of MCP servers].
104
+
```json
105
+
{
106
+
"chat.mcp.discovery.enabled": true
107
+
}
108
+
```
97
109
98
110
#### Goose
99
111
Configure `extensions` in your `~/.config/goose/config.yaml`.
@@ -259,6 +271,9 @@ The software is in the alpha stage, so breaking changes may happen.
259
271
Version pinning is strongly recommended, especially if you use it as a library.
260
272
261
273
274
+
[Add an MCP server to your VS Code user settings]: https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server-to-your-user-settings
275
+
[Add an MCP server to your VS Code workspace]: https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server-to-your-workspace
276
+
[Automatic discovery of MCP servers]: https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_automatic-discovery-of-mcp-servers
0 commit comments