From 3f27e6a3cb955d9d5cd1a864ec5c1ed48cd36db6 Mon Sep 17 00:00:00 2001 From: Piotr Paulski Date: Mon, 9 Mar 2026 17:01:44 +0000 Subject: [PATCH] fix: update VS Code manual installation powershell command --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 0178f5e96..85d82ea15 100644 --- a/README.md +++ b/README.md @@ -228,10 +228,18 @@ Configure the following fields and press `CTRL+S` to save the configuration: Follow the MCP install guide, with the standard config from above. You can also install the Chrome DevTools MCP server using the VS Code CLI: +For macOS and Linux: + ```bash code --add-mcp '{"name":"io.github.ChromeDevTools/chrome-devtools-mcp","command":"npx","args":["-y","chrome-devtools-mcp"],"env":{}}' ``` +For Windows (PowerShell): + +```powershell +code --add-mcp '{"""name""":"""io.github.ChromeDevTools/chrome-devtools-mcp""","""command""":"""npx""","""args""":["""-y""","""chrome-devtools-mcp"""]}' +``` +