feat: enhance GitHub PAT retrieval and add MCP server configuration

This commit is contained in:
Peter Wood
2025-05-18 08:06:40 -04:00
parent 42c19c5533
commit fb657d1267
2 changed files with 29 additions and 1 deletions

18
.vscode/settings.json vendored
View File

@@ -18,5 +18,23 @@
"port": "443",
"baseUrl": "https://finance-app-production.example.com/api"
}
},
"mcp": {
"servers": {
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN=${env:GITHUB_PERSONAL_ACCESS_TOKEN}",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${env:GITHUB_PERSONAL_ACCESS_TOKEN}"
}
}
}
}
}