Skip to content

Commit be22f6e

Browse files
fuentesjrwilliammartin
authored andcommitted
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 7d4aa71 commit be22f6e

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
@@ -29,37 +29,35 @@ For manual installation, add the following JSON block to your User Settings (JSO
2929

3030
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.
3131

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

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

6563
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)