mcpbrowser 0.2.11 → 0.2.13

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
@@ -19,7 +19,7 @@ Or search "MCPBrowser" in VS Code Extensions view.
19
19
  **From GitHub Release:**
20
20
  Download from [GitHub Releases](https://github.com/cherchyk/MCPBrowser/releases):
21
21
  ```bash
22
- code --install-extension mcpbrowser-0.1.4.vsix
22
+ code --install-extension mcpbrowser-0.2.13.vsix
23
23
  ```
24
24
 
25
25
  The extension automatically:
@@ -30,7 +30,7 @@ The extension automatically:
30
30
  📦 [View on Marketplace](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser)
31
31
 
32
32
  ### Option 2: npm Package (Recommended for Manual Setup)
33
- Published on npm as [mcpbrowser](https://www.npmjs.com/package/mcpbrowser) v0.2.3.
33
+ Published on npm as [mcpbrowser](https://www.npmjs.com/package/mcpbrowser) v0.2.13.
34
34
 
35
35
  Add to your `mcp.json`:
36
36
  ```jsonc
@@ -47,7 +47,7 @@ Add to your `mcp.json`:
47
47
  - Mac/Linux: `~/.config/Code/User/mcp.json`
48
48
 
49
49
  ### Option 3: MCP Registry
50
- Available in the [MCP Registry](https://registry.modelcontextprotocol.io/) as `io.github.cherchyk/browser` v0.2.3.
50
+ Available in the [MCP Registry](https://registry.modelcontextprotocol.io/) as `io.github.cherchyk/browser` v0.2.13.
51
51
 
52
52
  Search for "browser" in the registry to find configuration instructions.
53
53
 
@@ -2,7 +2,7 @@
2
2
  "name": "mcpbrowser",
3
3
  "displayName": "MCP Browser",
4
4
  "description": "Extends Copilot's web access to protected pages - handles login, SSO, and anti-crawler restrictions",
5
- "version": "0.2.11",
5
+ "version": "0.2.13",
6
6
  "publisher": "cherchyk",
7
7
  "icon": "icon.png",
8
8
  "engines": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  { "name": "mcpbrowser",
2
- "version": "0.2.11",
2
+ "version": "0.2.13",
3
3
  "mcpName": "io.github.cherchyk/browser",
4
4
  "type": "module",
5
5
  "description": "MCP server that loads authenticated web pages using Chrome DevTools Protocol",
@@ -272,12 +272,12 @@ function truncate(str, max) {
272
272
  }
273
273
 
274
274
  async function main() {
275
- const server = new Server({ name: "MCPBrowser", version: "0.2.0" }, { capabilities: { tools: {} } });
275
+ const server = new Server({ name: "MCPBrowser", version: "0.2.13" }, { capabilities: { tools: {} } });
276
276
 
277
277
  const tools = [
278
278
  {
279
279
  name: "load_and_extract",
280
- description: "⚠️ BROWSER ACCESS: Opens pages in your Chrome browser with your default profile (saved passwords, extensions, authenticated sessions). Use when normal URL fetching fails due to authentication requirements, login redirects, 401/403 errors, anti-crawler/bot detection, or session requirements. Automatically handles auth redirects, waits for network idle, and supports tab reuse to preserve sessions. Returns both plain text and HTML content.",
280
+ description: "🌐 PRIMARY BROWSER TOOL for authenticated/protected websites: Opens pages in your Chrome browser with your actual user profile (saved passwords, extensions, active sessions). **USE THIS FIRST** for: internal/corporate sites (*.microsoft.com, *.eng.ms, etc.), login-required pages, SSO/OAuth protected content, paywalled sites, anti-bot protected pages, or any 401/403/authentication errors. Automatically handles login redirects, waits for content to load, supports session persistence via tab reuse. Returns both plain text and HTML even from login/auth pages. Always prefer this over generic URL fetchers for authenticated content.",
281
281
  inputSchema: {
282
282
  type: "object",
283
283
  properties: {