From 572a11d82f4efdb58d151282f0d411a114e8eaf8 Mon Sep 17 00:00:00 2001 From: ashigirl96 Date: Wed, 23 Jul 2025 01:41:34 +0900 Subject: [PATCH] fix: correct playwright MCP package name typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo in playwright MCP server configuration where @playright/mcp was incorrectly specified instead of @playwright/mcp, which would cause installation failures. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- setup/components/mcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/components/mcp.py b/setup/components/mcp.py index 08d61e8..90cb1f5 100644 --- a/setup/components/mcp.py +++ b/setup/components/mcp.py @@ -43,7 +43,7 @@ class MCPComponent(Component): "playwright": { "name": "playwright", "description": "Cross-browser E2E testing and automation", - "npm_package": "@playright/mcp@latest", + "npm_package": "@playwright/mcp@latest", "required": False } }