mcpbrowser 0.2.12 → 0.2.14
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 +3 -3
- package/extension/package.json +1 -1
- package/package.json +1 -1
- package/src/mcp-browser.js +2 -2
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.2.
|
|
22
|
+
code --install-extension mcpbrowser-0.2.14.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.
|
|
33
|
+
Published on npm as [mcpbrowser](https://www.npmjs.com/package/mcpbrowser) v0.2.14.
|
|
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.
|
|
50
|
+
Available in the [MCP Registry](https://registry.modelcontextprotocol.io/) as `io.github.cherchyk/browser` v0.2.14.
|
|
51
51
|
|
|
52
52
|
Search for "browser" in the registry to find configuration instructions.
|
|
53
53
|
|
package/extension/package.json
CHANGED
|
@@ -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.
|
|
5
|
+
"version": "0.2.14",
|
|
6
6
|
"publisher": "cherchyk",
|
|
7
7
|
"icon": "icon.png",
|
|
8
8
|
"engines": {
|
package/package.json
CHANGED
package/src/mcp-browser.js
CHANGED
|
@@ -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.
|
|
275
|
+
const server = new Server({ name: "MCPBrowser", version: "0.2.14" }, { capabilities: { tools: {} } });
|
|
276
276
|
|
|
277
277
|
const tools = [
|
|
278
278
|
{
|
|
279
279
|
name: "load_and_extract",
|
|
280
|
-
description: "
|
|
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: {
|