@agent360/browser-mcp 1.16.0 → 1.19.0

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 CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ![Browser MCP Demo](assets/demo.gif)
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). 25 tools total.
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. 25 browser tools are now available in Claude Code.
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
- ## 25 Tools
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 # 21 tool definitions
148
+ tools.js # 29 tool definitions
139
149
  bin/cli.js # Install CLI
140
150
  ```
141
151