Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go",
"github.copilot.chat.githubMcpServer.enabled": true
"github.copilot.chat.githubMcpServer.enabled": true,
"github.copilot.chat.githubMcpServer.toolsets": [
"default", // https://github.com/github/github-mcp-server/blob/main/README.md#default-toolset
"actions"
]
},

// Add the IDs of extensions you want installed when the container is created.
Expand All @@ -34,7 +38,18 @@
"github.vscode-github-actions",
"GitHub.copilot-chat",
"ms-azuretools.vscode-azure-github-copilot" // also adds MCP server and Azure resources
]
],
"mcp": {
"servers": {
// Azure MCP server - installed via extension
// GitHub MCP server - via GitHub Copilot Chat built-in
"deepwiki": {
"type": "http",
"url": "https://mcp.deepwiki.com/mcp"
}
// codewiki.google does not have MCP server, can just use web access
}
}
}
},

Expand Down
Loading