From 2d87c2023fa239c3e52a5b29c5f33e00b9505258 Mon Sep 17 00:00:00 2001 From: Christopher Harrison Date: Mon, 26 Jan 2026 14:01:44 -0800 Subject: [PATCH 1/2] Add Copilot CLI usage instructions to README Added instructions for using the Copilot CLI to add the MCP server. --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index eae617a..68340e5 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,36 @@ startup_timeout_ms = 20_000 +
+GitHub Copilot CLI +Use the Copilot CLI to interactively add the MCP server: + +```bash +/mcp add +``` + +Alternatively, create or edit the configuration file `~/.copilot/mcp-config.json` and add: + +```json +{ + "mcpServers": { + "playwright": { + "type": "local", + "command": "npx", + "tools": [ + "*" + ], + "args": [ + "@playwright/mcp@latest" + ] + } + } +} +``` + +For more information, see the [Copilot CLI documentation](https://docs.github.com/en/copilot/concepts/agents/about-copilot-cli). +
+
Cursor From 33955ed226c2f463be05c9e908cdc410fe385699 Mon Sep 17 00:00:00 2001 From: Christopher Harrison Date: Mon, 26 Jan 2026 17:49:59 -0800 Subject: [PATCH 2/2] Fix typo --- README.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 68340e5..fb325ef 100644 --- a/README.md +++ b/README.md @@ -98,15 +98,9 @@ Alternatively, create or edit the configuration file `~/.copilot/mcp-config.json ```json { "mcpServers": { - "playwright": { - "type": "local", + "next-devtools": { "command": "npx", - "tools": [ - "*" - ], - "args": [ - "@playwright/mcp@latest" - ] + "args": ["-y", "next-devtools-mcp@latest"] } } }