Skip to content

Commit c15534f

Browse files
chore: add Playwright MCP server config to .mcp.json [PYSDK-117] (#608)
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.
1 parent 93f83aa commit c15534f

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,6 @@ scalene-profile.html
9696
# Nicegui
9797
.nicegui
9898

99-
# MCP
100-
.mcp.json
101-
10299
# Application specific
103100
data/**
104101
!data/.keep

.mcp.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mcpServers": {
3+
"playwright": {
4+
"command": "npx",
5+
"args": ["@playwright/mcp@latest"]
6+
}
7+
}
8+
}

0 commit comments

Comments
 (0)