mcpbrowser 0.2.0 → 0.2.2
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/.mcpregistry_github_token +1 -0
- package/.mcpregistry_registry_token +1 -0
- package/README.md +68 -35
- package/extension/.vscodeignore +6 -0
- package/extension/LICENSE +21 -0
- package/extension/README.md +61 -0
- package/extension/icon.png +0 -0
- package/extension/icon.svg +35 -0
- package/extension/mcpbrowser-0.1.1.vsix +0 -0
- package/extension/mcpbrowser-0.1.2.vsix +0 -0
- package/extension/mcpbrowser-0.1.3.vsix +0 -0
- package/extension/mcpbrowser-0.1.4.vsix +0 -0
- package/extension/mcpbrowser-config-0.1.0.vsix +0 -0
- package/extension/node_modules/.package-lock.json +32 -0
- package/extension/node_modules/@types/node/LICENSE +21 -0
- package/extension/node_modules/@types/node/README.md +15 -0
- package/extension/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/extension/node_modules/@types/node/assert.d.ts +1062 -0
- package/extension/node_modules/@types/node/async_hooks.d.ts +605 -0
- package/extension/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- package/extension/node_modules/@types/node/buffer.d.ts +1936 -0
- package/extension/node_modules/@types/node/child_process.d.ts +1475 -0
- package/extension/node_modules/@types/node/cluster.d.ts +577 -0
- package/extension/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/extension/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/extension/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/extension/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/extension/node_modules/@types/node/console.d.ts +452 -0
- package/extension/node_modules/@types/node/constants.d.ts +21 -0
- package/extension/node_modules/@types/node/crypto.d.ts +4590 -0
- package/extension/node_modules/@types/node/dgram.d.ts +597 -0
- package/extension/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/extension/node_modules/@types/node/dns/promises.d.ts +479 -0
- package/extension/node_modules/@types/node/dns.d.ts +871 -0
- package/extension/node_modules/@types/node/domain.d.ts +170 -0
- package/extension/node_modules/@types/node/events.d.ts +977 -0
- package/extension/node_modules/@types/node/fs/promises.d.ts +1270 -0
- package/extension/node_modules/@types/node/fs.d.ts +4375 -0
- package/extension/node_modules/@types/node/globals.d.ts +172 -0
- package/extension/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/extension/node_modules/@types/node/http.d.ts +2049 -0
- package/extension/node_modules/@types/node/http2.d.ts +2631 -0
- package/extension/node_modules/@types/node/https.d.ts +578 -0
- package/extension/node_modules/@types/node/index.d.ts +93 -0
- package/extension/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- package/extension/node_modules/@types/node/module.d.ts +539 -0
- package/extension/node_modules/@types/node/net.d.ts +1012 -0
- package/extension/node_modules/@types/node/os.d.ts +506 -0
- package/extension/node_modules/@types/node/package.json +140 -0
- package/extension/node_modules/@types/node/path.d.ts +200 -0
- package/extension/node_modules/@types/node/perf_hooks.d.ts +961 -0
- package/extension/node_modules/@types/node/process.d.ts +1957 -0
- package/extension/node_modules/@types/node/punycode.d.ts +117 -0
- package/extension/node_modules/@types/node/querystring.d.ts +152 -0
- package/extension/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/extension/node_modules/@types/node/readline.d.ts +589 -0
- package/extension/node_modules/@types/node/repl.d.ts +430 -0
- package/extension/node_modules/@types/node/sea.d.ts +153 -0
- package/extension/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/extension/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/extension/node_modules/@types/node/stream/web.d.ts +533 -0
- package/extension/node_modules/@types/node/stream.d.ts +1675 -0
- package/extension/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/extension/node_modules/@types/node/test.d.ts +1787 -0
- package/extension/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/extension/node_modules/@types/node/timers.d.ts +286 -0
- package/extension/node_modules/@types/node/tls.d.ts +1255 -0
- package/extension/node_modules/@types/node/trace_events.d.ts +197 -0
- package/extension/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/extension/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/extension/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- package/extension/node_modules/@types/node/tty.d.ts +208 -0
- package/extension/node_modules/@types/node/url.d.ts +964 -0
- package/extension/node_modules/@types/node/util.d.ts +2331 -0
- package/extension/node_modules/@types/node/v8.d.ts +809 -0
- package/extension/node_modules/@types/node/vm.d.ts +1001 -0
- package/extension/node_modules/@types/node/wasi.d.ts +181 -0
- package/extension/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/extension/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/extension/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/extension/node_modules/@types/node/web-globals/fetch.d.ts +46 -0
- package/extension/node_modules/@types/node/worker_threads.d.ts +715 -0
- package/extension/node_modules/@types/node/zlib.d.ts +540 -0
- package/extension/node_modules/@types/vscode/LICENSE +21 -0
- package/extension/node_modules/@types/vscode/README.md +15 -0
- package/extension/node_modules/@types/vscode/index.d.ts +21153 -0
- package/extension/node_modules/@types/vscode/package.json +26 -0
- package/extension/node_modules/undici-types/LICENSE +21 -0
- package/extension/node_modules/undici-types/README.md +6 -0
- package/extension/node_modules/undici-types/agent.d.ts +31 -0
- package/extension/node_modules/undici-types/api.d.ts +43 -0
- package/extension/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/extension/node_modules/undici-types/cache.d.ts +36 -0
- package/extension/node_modules/undici-types/client.d.ts +108 -0
- package/extension/node_modules/undici-types/connector.d.ts +34 -0
- package/extension/node_modules/undici-types/content-type.d.ts +21 -0
- package/extension/node_modules/undici-types/cookies.d.ts +28 -0
- package/extension/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/extension/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/extension/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/extension/node_modules/undici-types/errors.d.ts +149 -0
- package/extension/node_modules/undici-types/eventsource.d.ts +61 -0
- package/extension/node_modules/undici-types/fetch.d.ts +209 -0
- package/extension/node_modules/undici-types/file.d.ts +39 -0
- package/extension/node_modules/undici-types/filereader.d.ts +54 -0
- package/extension/node_modules/undici-types/formdata.d.ts +108 -0
- package/extension/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/extension/node_modules/undici-types/global-origin.d.ts +7 -0
- package/extension/node_modules/undici-types/handlers.d.ts +15 -0
- package/extension/node_modules/undici-types/header.d.ts +4 -0
- package/extension/node_modules/undici-types/index.d.ts +71 -0
- package/extension/node_modules/undici-types/interceptors.d.ts +17 -0
- package/extension/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/extension/node_modules/undici-types/mock-client.d.ts +25 -0
- package/extension/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/extension/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/extension/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/extension/node_modules/undici-types/package.json +55 -0
- package/extension/node_modules/undici-types/patch.d.ts +33 -0
- package/extension/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/extension/node_modules/undici-types/pool.d.ts +39 -0
- package/extension/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/extension/node_modules/undici-types/readable.d.ts +65 -0
- package/extension/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/extension/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/extension/node_modules/undici-types/util.d.ts +18 -0
- package/extension/node_modules/undici-types/webidl.d.ts +228 -0
- package/extension/node_modules/undici-types/websocket.d.ts +150 -0
- package/extension/package-lock.json +44 -0
- package/extension/package.json +55 -0
- package/extension/src/extension.js +257 -0
- package/package.json +2 -1
- package/server.json +20 -0
- package/src/mcp-browser.js +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ghu_GEGvUt8NgjqiZYHTwekKgM9yUsX1n22fSpJ5
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"token":"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtY3AtcmVnaXN0cnkiLCJleHAiOjE3NjY0MjQ1NTMsIm5iZiI6MTc2NjQyNDI1MywiaWF0IjoxNzY2NDI0MjUzLCJhdXRoX21ldGhvZCI6ImdpdGh1Yi1hdCIsImF1dGhfbWV0aG9kX3N1YiI6ImNoZXJjaHlrIiwicGVybWlzc2lvbnMiOlt7ImFjdGlvbiI6InB1Ymxpc2giLCJyZXNvdXJjZSI6ImlvLmdpdGh1Yi5jaGVyY2h5ay8qIn1dfQ.pVy-6UXIaWbfS_fZH6fw2g_tQluhRxxY_zfkp3sFwl_dMDf3io17bu12WkWwSl5k9OoWVNtGpu1gooWrvvj0Bg","expires_at":1766424553}
|
package/README.md
CHANGED
|
@@ -1,10 +1,57 @@
|
|
|
1
1
|
# MCPBrowser (MCP fetch tool with authenticated Chrome)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser)
|
|
4
|
+
[](https://www.npmjs.com/package/mcpbrowser)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
Alternative web fetcher for GitHub Copilot when normal URL access fails due to authentication or anti-crawler restrictions. Uses your Chrome/Edge browser session via DevTools to bypass login requirements and bot detection.
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
## 🚀 Installation Options
|
|
10
|
+
|
|
11
|
+
### Option 1: VS Code Extension (Easiest - One Click)
|
|
12
|
+
|
|
13
|
+
**From VS Code Marketplace:**
|
|
14
|
+
```bash
|
|
15
|
+
code --install-extension cherchyk.mcpbrowser
|
|
16
|
+
```
|
|
17
|
+
Or search "MCPBrowser" in VS Code Extensions view.
|
|
18
|
+
|
|
19
|
+
**From GitHub Release:**
|
|
20
|
+
Download from [GitHub Releases](https://github.com/cherchyk/MCPBrowser/releases):
|
|
21
|
+
```bash
|
|
22
|
+
code --install-extension mcpbrowser-0.1.4.vsix
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
The extension automatically:
|
|
26
|
+
- Installs the MCPBrowser npm package globally
|
|
27
|
+
- Configures mcp.json for GitHub Copilot
|
|
28
|
+
- Complete one-click setup - no manual steps needed
|
|
29
|
+
|
|
30
|
+
📦 [View on Marketplace](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser)
|
|
31
|
+
|
|
32
|
+
### Option 2: npm Package (Recommended for Manual Setup)
|
|
33
|
+
Published on npm as [mcpbrowser](https://www.npmjs.com/package/mcpbrowser) v0.2.2.
|
|
34
|
+
|
|
35
|
+
Add to your `mcp.json`:
|
|
36
|
+
```jsonc
|
|
37
|
+
"MCPBrowser": {
|
|
38
|
+
"type": "stdio",
|
|
39
|
+
"command": "npx",
|
|
40
|
+
"args": ["-y", "mcpbrowser@latest"],
|
|
41
|
+
"description": "Loads authenticated web pages using your Chrome session"
|
|
42
|
+
}
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
**mcp.json Location:**
|
|
46
|
+
- Windows: `%APPDATA%\Code\User\mcp.json`
|
|
47
|
+
- Mac/Linux: `~/.config/Code/User/mcp.json`
|
|
48
|
+
|
|
49
|
+
### Option 3: MCP Registry
|
|
50
|
+
Available in the [MCP Registry](https://registry.modelcontextprotocol.io/) as `io.github.cherchyk/browser` v0.2.2.
|
|
51
|
+
|
|
52
|
+
Search for "browser" in the registry to find configuration instructions.
|
|
53
|
+
|
|
54
|
+
### Option 4: Clone from GitHub (Development)
|
|
8
55
|
```bash
|
|
9
56
|
git clone https://github.com/cherchyk/MCPBrowser.git
|
|
10
57
|
cd MCPBrowser
|
|
@@ -12,9 +59,14 @@ npm install
|
|
|
12
59
|
copy .env.example .env # optional: set Chrome overrides
|
|
13
60
|
```
|
|
14
61
|
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
|
|
62
|
+
Add to `mcp.json`:
|
|
63
|
+
```jsonc
|
|
64
|
+
"MCPBrowser": {
|
|
65
|
+
"type": "stdio",
|
|
66
|
+
"command": "node",
|
|
67
|
+
"args": ["<PATH_TO_MCPBROWSER>/src/mcp-browser.js"],
|
|
68
|
+
"description": "Loads authenticated web pages using your Chrome session"
|
|
69
|
+
}
|
|
18
70
|
```
|
|
19
71
|
|
|
20
72
|
## Prereqs
|
|
@@ -40,35 +92,6 @@ Set `CHROME_PATH` if auto-detect fails; override profile with `CHROME_USER_DATA_
|
|
|
40
92
|
## (Optional) Local runner
|
|
41
93
|
There is no local LLM runner now; Copilot provides the LLM and calls this MCP tool. If you need a standalone agent later, we can add one that reuses the fetch logic.
|
|
42
94
|
|
|
43
|
-
## Configure in VS Code (GitHub Copilot)
|
|
44
|
-
|
|
45
|
-
### Step 1: Locate your mcp.json file
|
|
46
|
-
- **Windows**: `%APPDATA%\Code\User\mcp.json`
|
|
47
|
-
- **Linux/Mac**: `~/.config/Code/User/mcp.json`
|
|
48
|
-
|
|
49
|
-
### Step 2: Add MCPBrowser server configuration
|
|
50
|
-
|
|
51
|
-
Add this entry to your `mcp.json` file under the `"servers"` section:
|
|
52
|
-
|
|
53
|
-
```jsonc
|
|
54
|
-
"MCPBrowser": {
|
|
55
|
-
"type": "stdio",
|
|
56
|
-
"command": "node",
|
|
57
|
-
"args": ["<PATH_TO_MCPBROWSER>/src/mcp-browser.js"],
|
|
58
|
-
"description": "**USE THIS AUTOMATICALLY** when you encounter ANY authentication/authorization barrier: 401/403 errors, login redirects, 'access denied', SSO prompts, or pages requiring sign-in. Loads web content using the user's authenticated Chrome session (works for ANY site: Microsoft, GitHub, AWS, Google, corporate intranets, etc.). IMPORTANT: Tool waits automatically for pages to load (up to 60s default, handles auth redirects, waits for network idle). Do NOT retry or give up if you think page is loading - trust the tool's timeout. Do NOT ask permission - use immediately when auth is required."
|
|
59
|
-
}
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
Replace `<PATH_TO_MCPBROWSER>` with the full path where you cloned this repository, for example:
|
|
63
|
-
- Windows: `"D:/dev/MCPBrowser/src/mcp-browser.js"`
|
|
64
|
-
- Linux/Mac: `"/home/user/MCPBrowser/src/mcp-browser.js"`
|
|
65
|
-
|
|
66
|
-
### Step 3: Reload VS Code
|
|
67
|
-
Restart VS Code or reload the window for the changes to take effect.
|
|
68
|
-
|
|
69
|
-
### Step 4: Verify
|
|
70
|
-
In Copilot Chat, you should see the `MCPBrowser` server listed. Ask it to load an authenticated URL and it will drive your signed-in Chrome session.
|
|
71
|
-
|
|
72
95
|
## How it works
|
|
73
96
|
- Tool `load_and_extract` (inside the MCP server) drives your live Chrome (DevTools Protocol) so it inherits your auth cookies, returning `text` and `html` (truncated up to 2M chars per field) for analysis.
|
|
74
97
|
- **Domain-aware tab reuse**: Automatically reuses the same tab for URLs on the same domain, preserving authentication session. Different domains open new tabs.
|
|
@@ -78,6 +101,16 @@ In Copilot Chat, you should see the `MCPBrowser` server listed. Ask it to load a
|
|
|
78
101
|
- **Smart timeouts**: 60s default for page load, 10 min for auth redirects. Tabs stay open indefinitely for reuse (no auto-close).
|
|
79
102
|
- GitHub Copilot's LLM invokes this tool via MCP; this repo itself does not run an LLM.
|
|
80
103
|
|
|
104
|
+
## Distribution
|
|
105
|
+
|
|
106
|
+
MCPBrowser is available through three channels:
|
|
107
|
+
|
|
108
|
+
1. **VS Code Extension** (easiest): [cherchyk.mcpbrowser](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser) - One-click configuration
|
|
109
|
+
2. **npm**: [mcpbrowser](https://www.npmjs.com/package/mcpbrowser) v0.2.2 - Use with npx
|
|
110
|
+
3. **MCP Registry**: [io.github.cherchyk/browser](https://registry.modelcontextprotocol.io/) v0.2.2 - Discoverable in registry
|
|
111
|
+
|
|
112
|
+
All three methods configure the same underlying MCP server that drives Chrome via DevTools Protocol.
|
|
113
|
+
|
|
81
114
|
## Auth-assisted fetch flow
|
|
82
115
|
- Copilot can call with just the URL, or with no params if you set an env default (`DEFAULT_FETCH_URL` or `MCP_DEFAULT_FETCH_URL`). By default tabs stay open indefinitely for reuse (domain-aware).
|
|
83
116
|
- First call opens the tab and leaves it open so you can sign in. No extra params needed.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 cherchyk
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# MCPBrowser
|
|
2
|
+
|
|
3
|
+
Alternative web fetcher for GitHub Copilot when normal URL access fails due to authentication or anti-crawler restrictions.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🚀 **One-Click Setup**: Installs npm package and configures mcp.json automatically
|
|
8
|
+
- 🔐 **Bypass Authentication**: Opens pages in your Chrome/Edge browser - you authenticate if needed, MCPBrowser waits and fetches the final page content
|
|
9
|
+
- 🤖 **Beat Anti-Crawler**: Works when sites block Copilot's normal fetching
|
|
10
|
+
- ⚙️ **Auto-Configuration**: Complete setup with a single click
|
|
11
|
+
|
|
12
|
+
## How It Works
|
|
13
|
+
|
|
14
|
+
When Copilot needs to access an authenticated or protected page:
|
|
15
|
+
1. MCPBrowser opens the URL in your Chrome/Edge browser
|
|
16
|
+
2. If authentication is required, you log in normally in the browser
|
|
17
|
+
3. MCPBrowser waits for the page to fully load (handles redirects automatically)
|
|
18
|
+
4. Once loaded, it extracts the content and returns it to Copilot
|
|
19
|
+
5. The browser tab stays open to reuse your session for future requests
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
### Installation Steps
|
|
24
|
+
|
|
25
|
+
1. Install this extension from VS Code marketplace
|
|
26
|
+
2. You'll see a notification: **"MCPBrowser is available! Would you like to configure it for GitHub Copilot?"**
|
|
27
|
+
3. Click **"Configure Now"**
|
|
28
|
+
4. Wait for "Installing MCPBrowser npm package..." to complete
|
|
29
|
+
5. When you see **"MCPBrowser configured successfully!"**, click **"Restart Now"**
|
|
30
|
+
6. After restart, MCPBrowser is ready to use with Copilot!
|
|
31
|
+
|
|
32
|
+
### Using with GitHub Copilot
|
|
33
|
+
|
|
34
|
+
Once configured, Copilot will automatically use MCPBrowser when it encounters auth/crawler blocks. You can also explicitly request it:
|
|
35
|
+
|
|
36
|
+
**Example prompts:**
|
|
37
|
+
```
|
|
38
|
+
Read https://internal.company.com/docs (I'm already logged in)
|
|
39
|
+
|
|
40
|
+
Load the content from https://portal.azure.com/resources - use my authenticated session
|
|
41
|
+
|
|
42
|
+
Fetch https://github.com/private-repo/issues using MCPBrowser
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Copilot will use your Chrome/Edge browser session to access these pages, bypassing authentication and anti-crawler restrictions.
|
|
46
|
+
|
|
47
|
+
### Manual Commands
|
|
48
|
+
|
|
49
|
+
Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P`):
|
|
50
|
+
- **Configure MCPBrowser for GitHub Copilot** - Set up or update configuration
|
|
51
|
+
- **Remove MCPBrowser from GitHub Copilot** - Remove configuration
|
|
52
|
+
|
|
53
|
+
## About MCPBrowser
|
|
54
|
+
|
|
55
|
+
Alternative web fetcher for GitHub Copilot when normal URL access fails. Uses Chrome DevTools Protocol to access authenticated and crawler-protected pages through your browser session.
|
|
56
|
+
|
|
57
|
+
Learn more: [MCPBrowser on GitHub](https://github.com/cherchyk/MCPBrowser)
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
MIT
|
|
Binary file
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<!-- Background circle -->
|
|
3
|
+
<circle cx="64" cy="64" r="60" fill="#0078D4"/>
|
|
4
|
+
|
|
5
|
+
<!-- Browser window outline -->
|
|
6
|
+
<rect x="24" y="28" width="80" height="56" rx="4" fill="white"/>
|
|
7
|
+
<rect x="28" y="32" width="72" height="48" rx="2" fill="#E8F4FD"/>
|
|
8
|
+
|
|
9
|
+
<!-- Browser chrome bar -->
|
|
10
|
+
<rect x="28" y="32" width="72" height="8" fill="#0078D4"/>
|
|
11
|
+
|
|
12
|
+
<!-- Browser dots (window controls) -->
|
|
13
|
+
<circle cx="33" cy="36" r="1.5" fill="white"/>
|
|
14
|
+
<circle cx="38" cy="36" r="1.5" fill="white"/>
|
|
15
|
+
<circle cx="43" cy="36" r="1.5" fill="white"/>
|
|
16
|
+
|
|
17
|
+
<!-- Lock/Shield icon (authentication symbol) -->
|
|
18
|
+
<g transform="translate(48, 48)">
|
|
19
|
+
<!-- Shield -->
|
|
20
|
+
<path d="M 16 4 L 16 14 C 16 18 12 22 8 24 C 4 22 0 18 0 14 L 0 4 L 8 0 Z"
|
|
21
|
+
fill="#10B981" stroke="none"/>
|
|
22
|
+
<!-- Checkmark inside shield -->
|
|
23
|
+
<path d="M 5 12 L 7 14 L 12 8"
|
|
24
|
+
stroke="white"
|
|
25
|
+
stroke-width="2"
|
|
26
|
+
stroke-linecap="round"
|
|
27
|
+
stroke-linejoin="round"
|
|
28
|
+
fill="none"/>
|
|
29
|
+
</g>
|
|
30
|
+
|
|
31
|
+
<!-- Connection indicator (small dots) -->
|
|
32
|
+
<circle cx="90" cy="48" r="3" fill="#10B981"/>
|
|
33
|
+
<circle cx="98" cy="48" r="2" fill="#10B981" opacity="0.7"/>
|
|
34
|
+
<circle cx="104" cy="48" r="1.5" fill="#10B981" opacity="0.4"/>
|
|
35
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcpbrowser",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"node_modules/@types/node": {
|
|
8
|
+
"version": "20.19.27",
|
|
9
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.27.tgz",
|
|
10
|
+
"integrity": "sha512-N2clP5pJhB2YnZJ3PIHFk5RkygRX5WO/5f0WC08tp0wd+sv0rsJk3MqWn3CbNmT2J505a5336jaQj4ph1AdMug==",
|
|
11
|
+
"dev": true,
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"undici-types": "~6.21.0"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"node_modules/@types/vscode": {
|
|
18
|
+
"version": "1.107.0",
|
|
19
|
+
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.107.0.tgz",
|
|
20
|
+
"integrity": "sha512-XS8YE1jlyTIowP64+HoN30OlC1H9xqSlq1eoLZUgFEC8oUTO6euYZxti1xRiLSfZocs4qytTzR6xCBYtioQTCg==",
|
|
21
|
+
"dev": true,
|
|
22
|
+
"license": "MIT"
|
|
23
|
+
},
|
|
24
|
+
"node_modules/undici-types": {
|
|
25
|
+
"version": "6.21.0",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
27
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
28
|
+
"dev": true,
|
|
29
|
+
"license": "MIT"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @types/node`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for node (https://nodejs.org/).
|
|
6
|
+
|
|
7
|
+
# Details
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v20.
|
|
9
|
+
|
|
10
|
+
### Additional Details
|
|
11
|
+
* Last updated: Sun, 14 Dec 2025 00:04:32 GMT
|
|
12
|
+
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
|
+
|
|
14
|
+
# Credits
|
|
15
|
+
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [David Junger](https://github.com/touffy), [Mohsen Azimi](https://github.com/mohsen1), [Nikita Galkin](https://github.com/galkin), [Sebastian Silbermann](https://github.com/eps1lon), [Wilco Bakker](https://github.com/WilcoBakker), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), [Matteo Collina](https://github.com/mcollina), and [Dmitry Semigradsky](https://github.com/Semigradsky).
|