Skip to content

Commit 0ad886e

Browse files
committed
chore: [#8] add config for GitHub MCP server
1 parent abd21df commit 0ad886e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.vscode/mcp.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"inputs": [
3+
{
4+
"type": "promptString",
5+
"id": "github_token",
6+
"description": "GitHub Personal Access Token",
7+
"password": true
8+
}
9+
],
10+
"servers": {
11+
"github": {
12+
"command": "docker",
13+
"args": [
14+
"run",
15+
"-i",
16+
"--rm",
17+
"-e",
18+
"GITHUB_PERSONAL_ACCESS_TOKEN",
19+
"ghcr.io/github/github-mcp-server"
20+
],
21+
"env": {
22+
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}"
23+
}
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)