diff --git a/README.md b/README.md index 9155355..2f4705e 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ A Model Context Protocol (MCP) server that provides browser automation capabilit "playwright": { "command": "npx", "args": [ - "@playwright/mcp", + "@playwright/mcp@latest", ] } } @@ -40,7 +40,7 @@ This mode is useful for background or batch operations. "playwright": { "command": "npx", "args": [ - "@playwright/mcp", + "@playwright/mcp@latest", "--headless" ] } @@ -66,7 +66,7 @@ And then in MCP config, add following to the `env`: "playwright": { "command": "npx", "args": [ - "@playwright/mcp" + "@playwright/mcp@latest" ], "env": { // Use the endpoint from the output of the server above. @@ -92,7 +92,7 @@ To use Vision Mode, add the `--vision` flag when starting the server: "playwright": { "command": "npx", "args": [ - "@playwright/mcp", + "@playwright/mcp@latest", "--vision" ] } diff --git a/package-lock.json b/package-lock.json index 2be6094..f9864de 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@playwright/mcp", - "version": "0.0.1", + "version": "0.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@playwright/mcp", - "version": "0.0.1", + "version": "0.0.2", "license": "Apache-2.0", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", diff --git a/package.json b/package.json index 145208f..78c072f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@playwright/mcp", - "version": "0.0.1", + "version": "0.0.2", "description": "Playwright Tools for MCP", "repository": { "type": "git",