@agent360/browser-mcp 1.16.0 → 1.16.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 +14 -4
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|

|
|
12
12
|
|
|
13
|
-
The only browser MCP with **multi-session support** (10 concurrent AI sessions), **human-in-the-loop** (2FA, CAPTCHA, credentials), and **built-in provider integrations** (Stripe, HubSpot, Slack, and 6 more).
|
|
13
|
+
The only browser MCP with **multi-session support** (10 concurrent AI sessions), **human-in-the-loop** (2FA, CAPTCHA, credentials), and **built-in provider integrations** (Stripe, HubSpot, Slack, and 6 more). 29 tools total.
|
|
14
14
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
@@ -26,7 +26,7 @@ Then load the extension in Chrome:
|
|
|
26
26
|
3. Click **Load unpacked** → select `~/.browser-mcp/extension/`
|
|
27
27
|
4. Restart Claude Code
|
|
28
28
|
|
|
29
|
-
That's it.
|
|
29
|
+
That's it. 29 browser tools are now available in Claude Code.
|
|
30
30
|
|
|
31
31
|
## Why This Over Playwright MCP / BrowserMCP?
|
|
32
32
|
|
|
@@ -43,7 +43,7 @@ That's it. 25 browser tools are now available in Claude Code.
|
|
|
43
43
|
| **Custom dropdowns** | Angular Material, React Select support | Works (headless) | Limited |
|
|
44
44
|
| **Install** | `npx @agent360/browser-mcp install` | `npx @anthropic-ai/mcp-playwright` | Manual clone |
|
|
45
45
|
|
|
46
|
-
##
|
|
46
|
+
## 29 Tools
|
|
47
47
|
|
|
48
48
|
### Navigation & Content
|
|
49
49
|
| Tool | Description |
|
|
@@ -94,6 +94,16 @@ That's it. 25 browser tools are now available in Claude Code.
|
|
|
94
94
|
|------|-------------|
|
|
95
95
|
| `browser_ask_user` | Show overlay dialog for 2FA, CAPTCHA, credentials, or any user input |
|
|
96
96
|
|
|
97
|
+
### Data
|
|
98
|
+
| Tool | Description |
|
|
99
|
+
|------|-------------|
|
|
100
|
+
| `browser_get_cookies` | Get cookies for a domain |
|
|
101
|
+
| `browser_set_cookies` | Set cookies for a domain |
|
|
102
|
+
| `browser_get_local_storage` | Read localStorage from page |
|
|
103
|
+
| `browser_set_local_storage` | Write localStorage values |
|
|
104
|
+
| `browser_console_logs` | Capture console.log/warn/error messages from page |
|
|
105
|
+
| `browser_upload_file` | Upload files to `<input type="file">` via Chrome Debugger API (no dialog) |
|
|
106
|
+
|
|
97
107
|
## Multi-Session Support
|
|
98
108
|
|
|
99
109
|
Each Claude Code conversation gets its own MCP server on a unique port (9876-9885). The Chrome extension connects to all active servers simultaneously.
|
|
@@ -135,7 +145,7 @@ extension/
|
|
|
135
145
|
|
|
136
146
|
mcp-server/
|
|
137
147
|
index.js # MCP server (stdio) + WebSocket client
|
|
138
|
-
tools.js #
|
|
148
|
+
tools.js # 29 tool definitions
|
|
139
149
|
bin/cli.js # Install CLI
|
|
140
150
|
```
|
|
141
151
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent360/browser-mcp",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.1",
|
|
4
4
|
"description": "Browser MCP — control your real Chrome from Claude Code. 29 tools, CAPTCHA solving, file upload, multi-session, human-in-the-loop.",
|
|
5
|
+
"mcpName": "io.github.Agent360dk/browser-mcp",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "index.js",
|
|
7
8
|
"bin": {
|