From 5345a7b4df4df9417bbdf3a2a352dc4c991f4e31 Mon Sep 17 00:00:00 2001 From: Debasish Sarkar Date: Thu, 27 Mar 2025 03:04:45 +0530 Subject: [PATCH] Update binary name to mcp-server-playwright (fixes #33) (#38) This PR updates the binary name in `package.json` from `mcp` to `mcp-server-playwright` as requested in issue #33. The change makes the binary name more specific, avoiding conflicts with other MCP servers and improving usability for global installations. Fixes #33 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 45b1580..2388287 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,6 @@ "typescript": "^5.8.2" }, "bin": { - "mcp": "cli.js" + "mcp-server-playwright": "cli.js" } }