From 1db7e43a4e793e08491c83afd6fa2aa408747412 Mon Sep 17 00:00:00 2001 From: Helmut Hoffer von Ankershoffen Date: Mon, 27 Apr 2026 15:40:36 +0200 Subject: [PATCH] chore: add Playwright MCP server config to .mcp.json [PYSDK-117] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove .mcp.json from .gitignore so the file becomes a tracked repo artefact (per Claude Code project-scope MCP convention) and add it at the repo root with a single Playwright stdio server entry (npx @playwright/mcp@latest). Pure dev-tooling change — does not modify SDK runtime, the published package, the SDK's own auto-discovered MCP server (aignostics.utils._mcp), CI workflows, tests, or docs. --- .gitignore | 3 --- .mcp.json | 8 ++++++++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .mcp.json diff --git a/.gitignore b/.gitignore index a53a652d5..d9b9b1630 100644 --- a/.gitignore +++ b/.gitignore @@ -96,9 +96,6 @@ scalene-profile.html # Nicegui .nicegui -# MCP -.mcp.json - # Application specific data/** !data/.keep diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 000000000..259a95910 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "playwright": { + "command": "npx", + "args": ["@playwright/mcp@latest"] + } + } +}