mcpbrowser 0.2.4 → 0.2.6
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 +2 -2
- package/extension/README.md +5 -6
- package/extension/package.json +3 -3
- package/package.json +1 -1
- package/server.json +1 -1
- package/src/mcp-browser.js +4 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# MCP Browser (MCP fetch for protected web resources)
|
|
2
2
|
|
|
3
3
|
[](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser)
|
|
4
4
|
[](https://www.npmjs.com/package/mcpbrowser)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**Extends GitHub Copilot's web access to protected pages** - handles login-protected pages, corporate SSO, and anti-crawler restrictions that normal fetching can't handle. Uses your Chrome/Edge browser session via DevTools Protocol.
|
|
8
8
|
|
|
9
9
|
## 🚀 Installation Options
|
|
10
10
|
|
package/extension/README.md
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# MCP Browser
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Extends GitHub Copilot's web access to protected pages** - handles login-protected pages, corporate SSO, and anti-crawler restrictions that normal fetching can't handle.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- 🚀 **One-Click Setup**: Installs npm package and configures mcp.json automatically
|
|
8
|
-
- 🔐 **
|
|
9
|
-
- 🤖 **
|
|
10
|
-
- ⚙️ **Auto-Configuration**: Complete setup with a single click
|
|
7
|
+
- 🚀 **One-Click Setup**: Installs npm package and configures mcp.json automatically - complete setup with a single click
|
|
8
|
+
- 🔐 **Authentication Support**: Opens pages in your Chrome/Edge browser - authenticate once, reuse sessions automatically
|
|
9
|
+
- 🤖 **Bypass Anti-Crawler**: Access sites that block automated tools
|
|
11
10
|
|
|
12
11
|
## How It Works
|
|
13
12
|
|
package/extension/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcpbrowser",
|
|
3
|
-
"displayName": "
|
|
4
|
-
"description": "
|
|
5
|
-
"version": "0.1.
|
|
3
|
+
"displayName": "MCP Browser",
|
|
4
|
+
"description": "Extends Copilot's web access to protected pages - handles login, SSO, and anti-crawler restrictions",
|
|
5
|
+
"version": "0.1.6",
|
|
6
6
|
"publisher": "cherchyk",
|
|
7
7
|
"icon": "icon.png",
|
|
8
8
|
"engines": {
|
package/package.json
CHANGED
package/server.json
CHANGED
package/src/mcp-browser.js
CHANGED
|
@@ -227,7 +227,7 @@ async function main() {
|
|
|
227
227
|
const tools = [
|
|
228
228
|
{
|
|
229
229
|
name: "load_and_extract",
|
|
230
|
-
description: "
|
|
230
|
+
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.",
|
|
231
231
|
inputSchema: {
|
|
232
232
|
type: "object",
|
|
233
233
|
properties: {
|
|
@@ -237,6 +237,9 @@ async function main() {
|
|
|
237
237
|
required: ["url"],
|
|
238
238
|
additionalProperties: false,
|
|
239
239
|
},
|
|
240
|
+
annotations: {
|
|
241
|
+
title: "Access Authenticated Web Page"
|
|
242
|
+
}
|
|
240
243
|
},
|
|
241
244
|
];
|
|
242
245
|
|