fix: correct playwright MCP package name typo (#210)

## Summary
- Fix critical typo in playwright MCP server configuration
- Change @playright/mcp to @playwright/mcp in setup/components/mcp.py
- Prevents MCP installation failures due to package not found errors

## Test plan
- [x] Verify package name is correctly spelled as @playwright/mcp
- [x] Confirm no other playwright typos exist in codebase
- [x] Test MCP installation process works with corrected package name

🤖 Generated with [Claude Code](https://claude.ai/code)
This commit is contained in:
Mithun Gowda B
2025-07-23 08:21:20 +05:30
committed by GitHub

View File

@@ -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
}
}