From c85ee1a6eca44f6ab2670636c74adc988c5d8897 Mon Sep 17 00:00:00 2001 From: Devraj Mehta Date: Fri, 5 Dec 2025 15:52:12 -0500 Subject: [PATCH] docs: update README with Copilot CLI usage instructions (#1243) --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/README.md b/README.md index f50f20e..45feb40 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,38 @@ For more information, see the [Codex MCP documentation](https://github.com/opena +
+Copilot + +Use the Copilot CLI to interactively add the Playwright 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