mcpbrowser 0.3.24 → 0.3.26

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/README.md +5 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Claude Desktop](https://img.shields.io/badge/Claude-Desktop-5865F2?logo=anthropic)](https://modelcontextprotocol.io/quickstart/user)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- > ⚠️ **Security Notice:** MCPBrowser extracts webpage content and provides it to your AI agent (e.g., GitHub Copilot, Claude), which then sends it to the LLM provider it uses (e.g., Anthropic, OpenAI, GitHub) for processing. Make sure you trust both your agent and the LLM provider — especially when accessing pages with sensitive or private data.
8
+ > ⚠️ **Security Notice:** MCPBrowser extracts webpage content and provides it to your AI agent (e.g., GitHub Copilot, Claude, Kiro, Antigravity), which then sends it to the LLM provider it uses (e.g., Anthropic, OpenAI, GitHub) for processing. Make sure you trust both your agent and the LLM provider — especially when accessing pages with sensitive or private data.
9
9
 
10
10
  **MCPBrowser is an MCP browser server that gives AI assistants the ability to browse web pages using a real Chrome, Edge, or Brave browser.** This browser-based MCP server fetches any web page — especially those protected by authentication, CAPTCHAs, anti-bot protection, or requiring JavaScript rendering. Uses your real browser for web automation so you can log in normally, then automatically extracts content. Works with corporate SSO, login forms, Cloudflare, and JavaScript-heavy sites (SPAs, dashboards).
11
11
 
@@ -60,12 +60,12 @@ Example workflow for AI assistant to use MCPBrowser
60
60
 
61
61
  ### Option 1: VS Code Extension
62
62
 
63
- Install from [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser) or run:
63
+ Install from [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser) or [Open VSX Registry](https://open-vsx.org/extension/cherchyk/mcpbrowser), or run:
64
64
  ```bash
65
65
  code --install-extension cherchyk.mcpbrowser
66
66
  ```
67
67
 
68
- The extension automatically installs and configures everything for GitHub Copilot.
68
+ The extension automatically installs and configures everything for your AI agent (GitHub Copilot, Kiro Agent, Antigravity Agent). Also works with VSCodium and other Open VSX-compatible editors.
69
69
 
70
70
  ### Option 2: Claude Code
71
71
 
@@ -123,7 +123,7 @@ Restart Claude Desktop after saving.
123
123
 
124
124
  ### Option 5: npm Package
125
125
 
126
- For VS Code (GitHub Copilot) manual setup, add to your `mcp.json`:
126
+ For VS Code, Kiro, Antigravity, or other editors — manual MCP setup. Add to your `mcp.json`:
127
127
 
128
128
  **Windows:** `%APPDATA%\Code\User\mcp.json`
129
129
  **Mac/Linux:** `~/.config/Code/User/mcp.json`
@@ -418,6 +418,7 @@ Logs go to `stderr` so they don't interfere with MCP protocol on `stdout`.
418
418
 
419
419
  - [GitHub](https://github.com/cherchyk/MCPBrowser)
420
420
  - [npm](https://www.npmjs.com/package/mcpbrowser)
421
+ - [Open VSX Registry](https://open-vsx.org/extension/cherchyk/mcpbrowser)
421
422
  - [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser)
422
423
  - [Issues](https://github.com/cherchyk/MCPBrowser/issues)
423
424
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcpbrowser",
3
- "version": "0.3.24",
3
+ "version": "0.3.26",
4
4
  "mcpName": "io.github.cherchyk/mcpbrowser",
5
5
  "type": "module",
6
6
  "description": "MCP browser server - fetch web pages using real Chrome/Edge/Brave browser. Handles authentication, SSO, CAPTCHAs, and anti-bot protection. Browser automation for AI assistants.",