Skip to content

Commit 45f86a7

Browse files
nanotaboadaCopilot
andcommitted
chore(vscode): add GitHub MCP Server configuration
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 6ed4f19 commit 45f86a7

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.vscode/mcp.json

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

0 commit comments

Comments
 (0)