From 57821ba2273c395127a96d0345c40481006aee78 Mon Sep 17 00:00:00 2001 From: colem Date: Fri, 31 Jul 2026 11:00:46 -0500 Subject: [PATCH] build(opencode): add playwright mcp server configuration Register the @playwright/mcp server in opencode.jsonc and reformat the watcher ignore list across multiple lines for readability. --- .config/opencode/opencode.jsonc | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.config/opencode/opencode.jsonc b/.config/opencode/opencode.jsonc index ba77bc4..719deb7 100644 --- a/.config/opencode/opencode.jsonc +++ b/.config/opencode/opencode.jsonc @@ -93,6 +93,11 @@ "Authorization": "Bearer {env:ZAI_API_KEY}", }, }, + "playwright": { + "type": "local", + "command": ["npx", "@playwright/mcp@latest"], + "enabled": true, + }, "ibmi-server": { "type": "local", "command": [ @@ -113,7 +118,13 @@ }, }, "watcher": { - "ignore": ["node_modules/**", ".git/**", "dist/**", "**/.venv/**", "**/target/**"], + "ignore": [ + "node_modules/**", + ".git/**", + "dist/**", + "**/.venv/**", + "**/target/**", + ], }, "lsp": true, "formatter": true,