From f64908d94e18b4abdf97419039c5a48ab66f44ba Mon Sep 17 00:00:00 2001 From: Padreug Date: Mon, 8 Jun 2026 20:58:36 +0200 Subject: [PATCH] chore(mcp): add playwright server pinned to nix-profile chromium Mirrors the configuration we use across aiolabs/webapp. Sites forked from the boilerplate inherit a browser-driving MCP server for visual inspection, screenshots and devtools-protocol access against any URL without needing per-project setup. Co-Authored-By: Claude Opus 4.7 (1M context) --- .mcp.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.mcp.json b/.mcp.json index cffc7d9..b0777fd 100644 --- a/.mcp.json +++ b/.mcp.json @@ -3,6 +3,18 @@ "shadcn": { "command": "npx", "args": ["shadcn-vue@latest", "mcp"] + }, + "playwright": { + "type": "stdio", + "command": "npx", + "args": [ + "@playwright/mcp@latest", + "--executable-path", + "/etc/profiles/per-user/padreug/bin/chromium", + "--caps", + "devtools" + ], + "env": {} } } }