Skip to content

Commit 6677fd0

Browse files
committed
chore: add VS Code MCP server configuration
1 parent 256aa6b commit 6677fd0

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

.vscode/mcp.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"servers": {
3+
"gopls": {
4+
"type": "stdio",
5+
"command": "gopls",
6+
"args": [
7+
"mcp"
8+
]
9+
},
10+
"github": {
11+
"type": "stdio",
12+
"command": "npx",
13+
"args": [
14+
"-y",
15+
"@modelcontextprotocol/server-github"
16+
],
17+
"env": {
18+
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github-token}"
19+
}
20+
},
21+
"fetch": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@modelcontextprotocol/server-fetch"
27+
]
28+
},
29+
"context7": {
30+
"type": "stdio",
31+
"command": "npx",
32+
"args": [
33+
"-y",
34+
"@upstash/context7-mcp@latest"
35+
]
36+
},
37+
"sequential-thinking": {
38+
"type": "stdio",
39+
"command": "npx",
40+
"args": [
41+
"-y",
42+
"@modelcontextprotocol/server-sequential-thinking"
43+
]
44+
},
45+
"docker": {
46+
"type": "stdio",
47+
"command": "npx",
48+
"args": [
49+
"-y",
50+
"docker-mcp"
51+
]
52+
},
53+
"memory": {
54+
"type": "stdio",
55+
"command": "npx",
56+
"args": [
57+
"-y",
58+
"@modelcontextprotocol/server-memory"
59+
]
60+
}
61+
},
62+
"inputs": [
63+
{
64+
"id": "github-token",
65+
"type": "promptString",
66+
"description": "GitHub Personal Access Token",
67+
"password": true
68+
}
69+
]
70+
}
71+

0 commit comments

Comments
 (0)