botbrowser-mcp 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +22 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botbrowser-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Enhanced browser automation MCP server based on Playwright",
5
5
  "author": "tonwe",
6
6
  "license": "Apache-2.0",
package/readme.md CHANGED
@@ -5,24 +5,43 @@ A wrapper around [@playwright/mcp](https://www.npmjs.com/package/@playwright/mcp
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install botbrowser-mcp
8
+ npm install -g botbrowser-mcp
9
9
  ```
10
10
 
11
11
  ## Usage
12
12
 
13
- Add to your MCP client configuration:
13
+ Add to your MCP client configuration (e.g., Claude Desktop config):
14
+
15
+ ```json
16
+ {
17
+ "mcpServers": {
18
+ "botbrowser": {
19
+ "command": "botbrowser-mcp"
20
+ }
21
+ }
22
+ }
23
+ ```
24
+
25
+ Or use with npx (no installation needed):
14
26
 
15
27
  ```json
16
28
  {
17
29
  "mcpServers": {
18
30
  "botbrowser": {
19
31
  "command": "npx",
20
- "args": ["botbrowser-mcp"]
32
+ "args": ["-y", "botbrowser-mcp"]
21
33
  }
22
34
  }
23
35
  }
24
36
  ```
25
37
 
38
+ ## Troubleshooting
39
+
40
+ If you get "Connection closed" error:
41
+ 1. Make sure you're using the latest version: `npm install -g botbrowser-mcp@latest`
42
+ 2. Try with full path: `"command": "/usr/local/bin/botbrowser-mcp"`
43
+ 3. Check Node.js is installed: `node --version`
44
+
26
45
  ## License
27
46
 
28
47
  Apache-2.0