From 44b07d4682312b99e2c0feba66f272eaf23d131a Mon Sep 17 00:00:00 2001 From: Dan Kotowski Date: Mon, 13 Jul 2026 02:33:44 -0500 Subject: [PATCH] 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) --- .mcp.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..37cce59 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,12 @@ +{ + "mcpServers": { + "playwright": { + "type": "stdio", + "command": "npx", + "args": [ + "@playwright/mcp@latest" + ], + "env": {} + } + } +} \ No newline at end of file