mcpbrowser 0.3.10 → 0.3.12

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.
package/README.md CHANGED
@@ -41,7 +41,9 @@ Example workflow for AI assistant to use MCPBrowser
41
41
  ## Requirements
42
42
 
43
43
  - Chrome or Edge browser
44
- - Node.js 18+
44
+ - [Node.js 18+](https://nodejs.org/) (includes npm)
45
+
46
+ > **Note:** Node.js must be installed on your system. The VS Code extension and npm package both require Node.js to run the MCP server. Download from [nodejs.org](https://nodejs.org/) if not already installed.
45
47
 
46
48
  ## Installation
47
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcpbrowser",
3
- "version": "0.3.10",
3
+ "version": "0.3.12",
4
4
  "mcpName": "io.github.cherchyk/mcpbrowser",
5
5
  "type": "module",
6
6
  "description": "MCP browser server - fetch web pages using real Chrome/Edge browser. Handles authentication, SSO, CAPTCHAs, and anti-bot protection. Browser automation for AI assistants.",
@@ -121,7 +121,7 @@ export class ChromiumBrowser extends BaseBrowser {
121
121
  const child = spawn(execPath, args, {
122
122
  detached: true,
123
123
  stdio: 'ignore',
124
- windowsHide: true
124
+ windowsHide: false
125
125
  });
126
126
  child.unref();
127
127