Skip to content

Commit 8e49edf

Browse files
authored
Update README.md to remove mcp key
The vscode configuration example in the README.md does not work with my version of vscode. Since it's also not required, this change removes it so that it works in all versions of vscode. Version: ``` Version: 1.99.1 (Universal) Commit: 7c6fdfb0b8f2f675eb0b47f3d95eeca78962565b Date: 2025-04-04T15:58:59.624Z (4 days ago) Electron: 34.3.2 ElectronBuildId: 11161073 Chromium: 132.0.6834.210 Node.js: 20.18.3 V8: 13.2.152.41-electron.0 OS: Darwin x64 24.3.0 ```
1 parent 936b24c commit 8e49edf

File tree

1 file changed

+22
-24
lines changed

1 file changed

+22
-24
lines changed

README.md

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -30,37 +30,35 @@ For manual installation, add the following JSON block to your User Settings (JSO
3030

3131
Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace. This will allow you to share the configuration with others.
3232

33-
> Note that the `mcp` key is not needed in the `.vscode/mcp.json` file.
3433

3534
```json
3635
{
37-
"mcp": {
38-
"inputs": [
39-
{
40-
"type": "promptString",
41-
"id": "github_token",
42-
"description": "GitHub Personal Access Token",
43-
"password": true
44-
}
45-
],
46-
"servers": {
47-
"github": {
48-
"command": "docker",
49-
"args": [
50-
"run",
51-
"-i",
52-
"--rm",
53-
"-e",
54-
"GITHUB_PERSONAL_ACCESS_TOKEN",
55-
"ghcr.io/github/github-mcp-server"
56-
],
57-
"env": {
58-
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}"
59-
}
36+
"inputs": [
37+
{
38+
"type": "promptString",
39+
"id": "github_token",
40+
"description": "GitHub Personal Access Token",
41+
"password": true
42+
}
43+
],
44+
"servers": {
45+
"github": {
46+
"command": "docker",
47+
"args": [
48+
"run",
49+
"-i",
50+
"--rm",
51+
"-e",
52+
"GITHUB_PERSONAL_ACCESS_TOKEN",
53+
"ghcr.io/github/github-mcp-server"
54+
],
55+
"env": {
56+
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}"
6057
}
6158
}
6259
}
6360
}
61+
6462
```
6563

6664
More about using MCP server tools in VS Code's [agent mode documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers).

0 commit comments

Comments
 (0)