From 337dcc0f0f7e75e865163bce826f35ecfd9d055b Mon Sep 17 00:00:00 2001 From: Steve Cliff Date: Sun, 3 May 2026 10:35:57 +0100 Subject: [PATCH] fix(.mcp.json): wrap playwright under mcpServers key Co-Authored-By: Claude Opus 4.7 --- .mcp.json | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.mcp.json b/.mcp.json index 4db70ab..06d4bd6 100644 --- a/.mcp.json +++ b/.mcp.json @@ -1,11 +1,13 @@ { - "playwright": { - "command": "npx", - "args": [ - "@playwright/mcp@latest", - "--headless", - "--output-dir", - "_diag" - ] + "mcpServers": { + "playwright": { + "command": "npx", + "args": [ + "@playwright/mcp@latest", + "--headless", + "--output-dir", + "_diag" + ] + } } }