mcpbrowser 0.2.0 → 0.2.1
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 +35 -0
- package/package.json +2 -1
- package/server.json +20 -0
package/README.md
CHANGED
|
@@ -1,7 +1,42 @@
|
|
|
1
1
|
# MCPBrowser (MCP fetch tool with authenticated Chrome)
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/mcpbrowser)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
3
6
|
An MCP server that exposes an authenticated page fetch tool for GitHub Copilot. It drives your signed-in Chrome/Edge via DevTools, reusing your profile to read restricted pages.
|
|
4
7
|
|
|
8
|
+
## 🚀 One-Click Install for VS Code
|
|
9
|
+
|
|
10
|
+
<details>
|
|
11
|
+
<summary><b>📋 Click to copy the configuration snippet</b></summary>
|
|
12
|
+
|
|
13
|
+
Add this to your VS Code `mcp.json` file:
|
|
14
|
+
|
|
15
|
+
**Location:**
|
|
16
|
+
- Windows: `%APPDATA%\Code\User\mcp.json`
|
|
17
|
+
- Mac/Linux: `~/.config/Code/User/mcp.json`
|
|
18
|
+
|
|
19
|
+
```jsonc
|
|
20
|
+
"MCPBrowser": {
|
|
21
|
+
"type": "stdio",
|
|
22
|
+
"command": "npx",
|
|
23
|
+
"args": ["-y", "mcpbrowser@latest"],
|
|
24
|
+
"description": "Loads authenticated web pages using your Chrome session"
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or clone from GitHub:
|
|
29
|
+
```jsonc
|
|
30
|
+
"MCPBrowser": {
|
|
31
|
+
"type": "stdio",
|
|
32
|
+
"command": "npx",
|
|
33
|
+
"args": ["-y", "github:cherchyk/MCPBrowser"],
|
|
34
|
+
"description": "Loads authenticated web pages using your Chrome session"
|
|
35
|
+
}
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
</details>
|
|
39
|
+
|
|
5
40
|
## Quick Install
|
|
6
41
|
|
|
7
42
|
### Option 1: Install from GitHub (Recommended)
|
package/package.json
CHANGED
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.cherchyk/browser",
|
|
4
|
+
"description": "MCP server for loading authenticated web pages using Chrome DevTools Protocol",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/cherchyk/MCPBrowser",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.2.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "mcpbrowser",
|
|
14
|
+
"version": "0.2.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|