Add Playwright MCP server config (#215)

Adds a project-scoped .mcp.json registering the Playwright MCP server
so browser automation tooling is available to anyone using Claude Code
in this repo.

Co-authored-by: Claude Opus 4.8 (1M context) <[email protected]>
This commit is contained in:
2026-07-13 02:33:44 -05:00
committed by GitHub
co-authored by Claude Opus 4.8
parent 2d14d87a83
commit 44b07d4682
+12
View File
@@ -0,0 +1,12 @@
{
"mcpServers": {
"playwright": {
"type": "stdio",
"command": "npx",
"args": [
"@playwright/mcp@latest"
],
"env": {}
}
}
}