feat: add Windows support via WSL bridge#7
Merged
Conversation
- Add install.ps1 PowerShell installer for Windows (irm ... | iex) - Add --skip-mcp-config flag to install.sh for WSL delegation - Configure Windows-side MCP clients with wsl bridge command - Update release.yml to upload install.ps1 as release asset - Update README with Windows install instructions and WSL config Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Point install.ps1 download at releases/latest/download (release artifact) - Use Invoke-RestMethod | Invoke-Expression instead of irm | iex aliases Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Windows support for devcontainer-mcp using the WSL stdio bridge — no native Windows binary needed.
Changes
install.ps1(new) — PowerShell installer for Windows:install.sh)"command": "wsl"bridgeinstall.sh— Added--skip-mcp-configflag soinstall.ps1can delegate binary installation to WSL without configuring Linux-side MCP clientsrelease.yml— Uploadsinstall.ps1alongsideinstall.shas a release assetREADME.md— Added Windows install one-liner and WSL MCP config exampleHow it works
MCP clients on Windows launch the server via WSL:
{ "mcpServers": { "devcontainer-mcp": { "command": "wsl", "args": ["~/.local/bin/devcontainer-mcp", "serve"] } } }The stdio transport works transparently across the WSL boundary. Zero Rust code changes needed.
Install command (Windows)