@bsbofmusic/agent-browser-mcp-opencode 0.1.1 → 1.0.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/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [1.0.0] - 2026-02-27
6
+
7
+ ### Added
8
+ - Initial release
9
+ - MCP server implementation for agent-browser
10
+ - Core tools: browser_ensure, browser_doctor, browser_help, browser_version, browser_exec
11
+ - Structured actions: browser_open, browser_snapshot, browser_click, browser_fill, browser_screenshot, browser_close, browser_get_text, browser_find, browser_wait, browser_tab
12
+ - Bootstrap auto-installation on startup
13
+ - ensureLatest() for automatic updates
14
+ - Process lock to prevent concurrent installations
15
+ - Full environment detection (OS, runtime, network, permissions)
16
+ - Doctor diagnostics covering 7 issue categories
17
+
18
+ ### Features
19
+ - One-click deployment via npx
20
+ - Idempotent ensure operation
21
+ - Structured output with logs and nextSteps
22
+ - Support for ALWAYS_LATEST environment variable
23
+ - Exec tool for full CLI capability passthrough
24
+
25
+ ### Dependencies
26
+ - @modelcontextprotocol/server-stdio: ^1.0.0
27
+ - execa: ^9.5.2
28
+ - conf: ^12.0.0
29
+ - semver: ^7.7.1
package/README.md CHANGED
@@ -1,22 +1,301 @@
1
1
  # @bsbofmusic/agent-browser-mcp-opencode
2
2
 
3
- MCP (stdio) server that drives `agent-browser` for OpenCode / CC SWITCH.
3
+ MCP Server for Vercel agent-browser - browser automation CLI for AI agents.
4
+
5
+ ---
6
+
7
+ ## What is This?
8
+
9
+ This is an MCP (Model Context Protocol) wrapper for [agent-browser](https://github.com/vercel-labs/agent-browser), providing browser automation capabilities for AI assistants like OpenCode, Claude Code, and others.
10
+
11
+ ### Use Cases
12
+
13
+ - **AI Testing**: Automate web testing workflows with AI agents
14
+ - **Web Scraping**: Extract data from dynamic web pages
15
+ - **Form Automation**: Fill forms, click buttons, navigate pages
16
+ - **Visual Testing**: Take screenshots, compare snapshots
17
+
18
+ ---
19
+
20
+ ## One-Click Enable
21
+
22
+ ### OpenCode Configuration
23
+
24
+ Add to your `opencode.json`:
25
+
26
+ ```json
27
+ {
28
+ "mcp": {
29
+ "agent-browser-mcp-opencode": {
30
+ "command": ["npx", "-y", "@bsbofmusic/agent-browser-mcp-opencode"],
31
+ "enabled": true,
32
+ "type": "local"
33
+ }
34
+ }
35
+ }
36
+ ```
37
+
38
+ ### Direct Run
39
+
40
+ ```bash
41
+ npx @bsbofmusic/agent-browser-mcp-opencode
42
+ ```
43
+
44
+ ### Docker
45
+
46
+ ```bash
47
+ docker run -it --rm bsbofmusic/agent-browser-mcp-opencode
48
+ ```
49
+
50
+ ### Global Install
51
+
52
+ ```bash
53
+ npm install -g @bsbofmusic/agent-browser-mcp-opencode
54
+ agent-browser-mcp-opencode
55
+ ```
56
+
57
+ ---
58
+
59
+ ## Tool List
60
+
61
+ ### Core Tools
62
+
63
+ | Tool | Description |
64
+ |------|-------------|
65
+ | `browser_ensure` | Manually trigger full repair (install/upgrade) |
66
+ | `browser_doctor` | Diagnose issues with actionable nextSteps |
67
+ | `browser_help` | List all available commands |
68
+ | `browser_version` | Show version info |
69
+ | `browser_exec` | Execute any agent-browser CLI command |
70
+
71
+ ### Structured Actions
72
+
73
+ | Tool | Description |
74
+ |------|-------------|
75
+ | `browser_open` | Navigate to URL |
76
+ | `browser_snapshot` | Get accessibility tree with refs |
77
+ | `browser_click` | Click element (@e1 or CSS selector) |
78
+ | `browser_fill` | Fill form field |
79
+ | `browser_screenshot` | Take screenshot |
80
+ | `browser_close` | Close browser |
81
+ | `browser_get_text` | Get element text |
82
+ | `browser_find` | Semantic locator (role/text/label) |
83
+ | `browser_wait` | Wait for element/text/URL/time |
84
+ | `browser_tab` | Manage tabs |
85
+
86
+ ---
87
+
88
+ ## Schema Examples
89
+
90
+ ### browser_open
91
+
92
+ **Input:**
93
+ ```json
94
+ {
95
+ "name": "browser_open",
96
+ "arguments": {"url": "https://example.com"}
97
+ }
98
+ ```
99
+
100
+ **Output:**
101
+ ```json
102
+ {
103
+ "ok": true,
104
+ "url": "https://example.com",
105
+ "duration": 2341
106
+ }
107
+ ```
108
+
109
+ ### browser_snapshot
110
+
111
+ **Input:**
112
+ ```json
113
+ {
114
+ "name": "browser_snapshot",
115
+ "arguments": {"interactive": true, "compact": true}
116
+ }
117
+ ```
118
+
119
+ **Output:**
120
+ ```json
121
+ {
122
+ "ok": true,
123
+ "output": {
124
+ "success": true,
125
+ "data": {
126
+ "snapshot": "- heading \"Example\" [ref=e1]\n - button \"Submit\" [ref=e2]"
127
+ }
128
+ },
129
+ "duration": 1234
130
+ }
131
+ ```
132
+
133
+ ### browser_exec
134
+
135
+ **Input:**
136
+ ```json
137
+ {
138
+ "name": "browser_exec",
139
+ "arguments": {
140
+ "command": "open example.com && snapshot -i",
141
+ "timeoutMs": 60000
142
+ }
143
+ }
144
+ ```
145
+
146
+ ---
147
+
148
+ ## Auto-Update Strategy
149
+
150
+ ### Environment Variables
151
+
152
+ | Variable | Default | Description |
153
+ |----------|---------|-------------|
154
+ | `ALWAYS_LATEST` | `1` | Check for updates before each call |
155
+ | `UPDATE_STRATEGY` | `simple` | `atomic` or `simple` |
156
+ | `LOG_LEVEL` | `info` | `error`, `warn`, `info`, `debug` |
157
+
158
+ ### Strategies
159
+
160
+ **Simple (default):**
161
+ - Direct overwrite installation
162
+ - No rollback capability
163
+
164
+ **Atomic:**
165
+ - Uses `runtime_active/` + `runtime_staging/` directories
166
+ - Validates before switching
167
+ - Rolls back on failure
168
+
169
+ ---
170
+
171
+ ## Runtime Directories
172
+
173
+ | Directory | Location | Purpose |
174
+ |-----------|----------|---------|
175
+ | Config | `~/.agent-browser/` | User configuration |
176
+ | Sessions | `~/.agent-browser/sessions/` | Saved auth states |
177
+ | Cache | System temp | Temporary files |
178
+
179
+ These directories are auto-created on first run and are rebuildable.
180
+
181
+ ---
182
+
183
+ ## Troubleshooting
184
+
185
+ ### Run browser_doctor
4
186
 
5
- ## CC SWITCH config
6
187
  ```json
7
188
  {
8
- "command": "npx",
9
- "args": ["-y", "@bsbofmusic/agent-browser-mcp-opencode@latest"],
10
- "type": "stdio"
189
+ "name": "browser_doctor"
11
190
  }
12
191
  ```
13
192
 
14
- ## Notes
15
- - First run may download Chromium (large).
16
- - This package auto-installs `agent-browser` if missing.
193
+ **Output includes:**
194
+ - Issue categories: network/permissions/dependencies/system_libraries/executable/browser/auth
195
+ - Severity: critical/high/medium
196
+ - nextSteps: actionable fix recommendations
197
+
198
+ ### Common Issues
199
+
200
+ 1. **agent-browser not installed**
201
+ - Run: `browser_ensure`
202
+ - Or: `npx agent-browser install`
203
+
204
+ 2. **Chromium not installed**
205
+ - Run: `npx agent-browser install`
206
+
207
+ 3. **Permission errors**
208
+ - Check npm global directory permissions
209
+ - Consider using npx instead
210
+
211
+ 4. **Network issues**
212
+ - Set npm mirror: `npm config set registry https://registry.npmmirror.com`
213
+ - Check proxy: `npm config get proxy`
214
+
215
+ ---
216
+
217
+ ## Verification Plan
218
+
219
+ ### 6.1 One-Click Deployment
220
+
221
+ ```bash
222
+ npx @bsbofmusic/agent-browser-mcp-opencode
223
+ ```
224
+
225
+ **Expected:** Auto-installs dependencies without manual steps.
226
+
227
+ ### 6.2 Capability Coverage
228
+
229
+ Test with 5+ core commands:
230
+ - `browser_open` → navigates to URL
231
+ - `browser_snapshot` → returns accessibility tree with refs
232
+ - `browser_click @e1` → clicks element
233
+ - `browser_fill @e2 "test"` → fills form
234
+ - `browser_screenshot` → captures image
235
+ - `browser_exec` → passes through all CLI commands
236
+
237
+ ### 6.3 Stability
238
+
239
+ - `browser_doctor` outputs 7 issue categories
240
+ - `browser_ensure` is idempotent
241
+ - Errors include logs + nextSteps
242
+
243
+ ### 6.4 Auto-Update
244
+
245
+ - `browser_version` shows current/latest
246
+ - `ALWAYS_LATEST=1` checks on each call
247
+
248
+ ### 6.5 Deployment Ready
249
+
250
+ - No manual config after first enable
251
+ - Survives MCP/Agent restart
252
+
253
+ ### 6.6 Failure Scenarios
254
+
255
+ | Scenario | Expected Output |
256
+ |----------|-----------------|
257
+ | No network | Network error + nextSteps |
258
+ | No permission | Permission error + nextSteps |
259
+ | Missing deps | Dep error + nextSteps |
260
+
261
+ ---
262
+
263
+ ## Wrapper Declaration
264
+
265
+ This project is a wrapper for **agent-browser** by Vercel Labs.
266
+
267
+ - **Upstream**: https://github.com/vercel-labs/agent-browser
268
+ - **License**: Apache-2.0
269
+ - This is NOT an official upstream release
270
+ - Upstream trademarks/copyrights belong to respective owners
271
+
272
+ See [THIRD_PARTY_NOTICES.md](./THIRD_PARTY_NOTICES.md) for license details.
273
+
274
+ ---
275
+
276
+ ## Upstream License
277
+
278
+ agent-browser is licensed under **Apache-2.0**.
279
+
280
+ This project includes upstream code per Apache-2.0 requirements.
281
+
282
+ ---
283
+
284
+ ## Version History
285
+
286
+ See [CHANGELOG.md](./CHANGELOG.md)
287
+
288
+ ---
289
+
290
+ ## Support
291
+
292
+ - MCP issues: https://github.com/issues
293
+ - agent-browser upstream: https://github.com/vercel-labs/agent-browser/issues
294
+
295
+ ---
296
+
297
+ ## License
298
+
299
+ Apache-2.0 License
17
300
 
18
- ## Env (optional)
19
- - `AGENT_BROWSER_SESSION=opencode`
20
- - `AGENT_BROWSER_STATE=.../state.json`
21
- - `AGENT_BROWSER_ALLOW_DOMAINS=github.com,google.com`
22
- - `AGENT_BROWSER_TIMEOUT_MS=60000`
301
+ Copyright (c) 2024-2025 bsbofmusic
@@ -0,0 +1,291 @@
1
+ # Third Party Notices
2
+
3
+ This file contains third party copyright notices and license information for dependencies used in this project.
4
+
5
+ ---
6
+
7
+ ## agent-browser
8
+
9
+ **Project**: https://github.com/vercel-labs/agent-browser
10
+ **License**: Apache-2.0
11
+ **Copyright**: Copyright (c) Vercel Inc.
12
+
13
+ ### Apache-2.0 License
14
+
15
+ Apache License
16
+ Version 2.0, January 2004
17
+ http://www.apache.org/licenses/
18
+
19
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
20
+
21
+ 1. Definitions.
22
+
23
+ "License" shall mean the terms and conditions for use, reproduction,
24
+ and distribution as defined by Sections 1 through 9 of this document.
25
+
26
+ "Licensor" shall mean the copyright owner or entity authorized by
27
+ the copyright owner that is granting the License.
28
+
29
+ "Legal Entity" shall mean the union of the acting entity and all
30
+ other entities that control, are controlled by, or are under common
31
+ control with that entity. For the purposes of this definition,
32
+ "control" means (i) the power, direct or indirect, to cause the
33
+ direction or management of such entity, whether by contract or
34
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
35
+ outstanding shares, or (iii) beneficial ownership of such entity.
36
+
37
+ "You" (or "Your") shall mean an individual or Legal Entity
38
+ exercising permissions granted by this License.
39
+
40
+ "Source" form shall mean the preferred form for making modifications,
41
+ including but not limited to software source code, documentation
42
+ source, and configuration files.
43
+
44
+ "Object" form shall mean any form resulting from mechanical
45
+ transformation or translation of a Source form, including but
46
+ not limited to compiled object code, generated documentation,
47
+ and conversions to other media types.
48
+
49
+ "Work" shall mean the work of authorship, whether in Source or
50
+ Object form, made available under the License, as indicated by a
51
+ copyright notice that is included in or attached to the work
52
+ (an example is provided in the Appendix below).
53
+
54
+ "Derivative Works" shall mean any work, whether in Source or Object
55
+ form, that is based on (or derived from) the Work and for which the
56
+ editorial revisions, annotations, elaborations, or other modifications
57
+ represent, as a whole, an original work of authorship. For the purposes
58
+ of this License, Derivative Works shall not include works that remain
59
+ separable from, or merely link (or bind by name) to the interfaces of,
60
+ the Work and Derivative Works thereof.
61
+
62
+ "Contribution" shall mean any work of authorship, including
63
+ the original version of the Work and any modifications or additions
64
+ to that Work or Derivative Works thereof, that is intentionally
65
+ submitted to the Licensor for inclusion in the Work by the copyright owner
66
+ or by an individual or Legal Entity authorized to submit on behalf of
67
+ the copyright owner. For the purposes of this definition, "submitted"
68
+ means any form of electronic, verbal, or written communication sent
69
+ to the Licensor or its representatives, including but not limited to
70
+ communication on electronic mailing lists, source code control systems,
71
+ and issue tracking systems that are managed by, or on behalf of, the
72
+ Licensor for the purpose of discussing and improving the Work, but
73
+ excluding communication that is conspicuously marked or otherwise
74
+ designated in writing by the copyright owner as "Not a Contribution."
75
+
76
+ "Contributor" shall mean Licensor and any individual or Legal Entity
77
+ on behalf of whom a Contribution has been received by Licensor and
78
+ subsequently incorporated within the Work.
79
+
80
+ 2. Grant of Copyright License. Subject to the terms and conditions of
81
+ this License, each Contributor hereby grants to You a perpetual,
82
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
83
+ copyright license to reproduce, prepare Derivative Works of,
84
+ publicly display, publicly perform, sublicense, and distribute the
85
+ Work and such Derivative Works in Source or Object form.
86
+
87
+ 3. Grant of Patent License. Subject to the terms and conditions of
88
+ this License, each Contributor hereby grants to You a perpetual,
89
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
90
+ (except as stated in this section) patent license to make, have made,
91
+ use, offer to sell, sell, import, and otherwise transfer the Work,
92
+ where such license applies only to those patent claims licensable
93
+ by such Contributor that are necessarily infringed by their
94
+ Contribution(s) alone or by combination of their Contribution(s)
95
+ with the Work to which such Contribution(s) was submitted. If You
96
+ institute patent litigation against any entity (including a
97
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
98
+ or a Contribution incorporated within the Work constitutes direct
99
+ or contributory patent infringement, then any patent licenses
100
+ granted to You under this License for that Work shall terminate
101
+ as of the date such litigation is filed.
102
+
103
+ 4. Redistribution. You may reproduce and distribute copies of the
104
+ Work or Derivative Works thereof in any medium, with or without
105
+ modifications, and in Source or Object form, provided that You
106
+ meet the following conditions:
107
+
108
+ (a) You must give any other recipients of the Work or
109
+ Derivative Works a copy of this License; and
110
+
111
+ (b) You must cause any modified files to carry prominent notices
112
+ stating that You changed the files; and
113
+
114
+ (c) You must retain, in the Source form of any Derivative Works
115
+ that You distribute, all copyright, patent, trademark, and
116
+ attribution notices from the Source form of the Work,
117
+ excluding those notices that do not pertain to any part of
118
+ the Derivative Works; and
119
+
120
+ (d) If the Work includes a "NOTICE" text file as part of its
121
+ distribution, then any Derivative Works that You distribute must
122
+ include a readable copy of the attribution notices contained
123
+ within such NOTICE file, excluding those notices that do not
124
+ pertain to any part of the Derivative Works, in at least one
125
+ of the following places: within a NOTICE text file distributed
126
+ as part of the Derivative Works; within the Source form or
127
+ documentation, if provided along with the Derivative Works; or,
128
+ within a display generated by the Derivative Works, if and
129
+ wherever such third-party notices normally appear. The contents
130
+ of the NOTICE file are for informational purposes only and
131
+ do not modify the License. You may add Your own attribution
132
+ notices within Derivative Works that You distribute, alongside
133
+ or as an addendum to the NOTICE text from the Work, provided
134
+ that such additional attribution notices cannot be construed
135
+ as modifying the License.
136
+
137
+ You may add Your own copyright statement to Your modifications and
138
+ may provide additional or different license terms and conditions
139
+ for use, reproduction, or distribution of Your modifications, or
140
+ for any such Derivative Works as a whole, provided Your use,
141
+ reproduction, and distribution of the Work otherwise complies with
142
+ the conditions stated in this License.
143
+
144
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
145
+ any Contribution intentionally submitted for inclusion in the Work
146
+ by You to the Licensor shall be under the terms and conditions of
147
+ this License, without any additional terms or conditions.
148
+ Notwithstanding the above, nothing herein shall supersede or modify
149
+ the terms of any separate license agreement you may have executed
150
+ with Licensor regarding such Contributions.
151
+
152
+ 6. Trademarks. This License does not grant permission to use the trade
153
+ names, trademarks, service marks, or product names of the Licensor,
154
+ except as required for reasonable and customary use in describing the
155
+ origin of the Work and reproducing the content of the NOTICE file.
156
+
157
+ 7. Disclaimer of Warranty. Unless required by applicable law or
158
+ agreed to in writing, Licensor provides the Work (and each
159
+ Contributor provides its Contributions) on an "AS IS" BASIS,
160
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
161
+ implied, including, without limitation, any warranties or conditions
162
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
163
+ PARTICULAR PURPOSE. You are solely responsible for determining the
164
+ appropriateness of using or redistributing the Work and assume any
165
+ risks associated with Your exercise of permissions under this License.
166
+
167
+ 8. Limitation of Liability. In no event and under no legal theory,
168
+ whether in tort (including negligence), contract, or otherwise,
169
+ unless required by applicable law (such as deliberate and grossly
170
+ negligent acts) or agreed to in writing, shall any Contributor be
171
+ liable to You for damages, including any direct, indirect, special,
172
+ incidental, or consequential damages of any character arising as a
173
+ result of this License or out of the use or inability to use the
174
+ Work (including but not limited to damages for loss of goodwill,
175
+ work stoppage, computer failure or malfunction, or any and all
176
+ other commercial damages or losses), even if such Contributor
177
+ has been advised of the possibility of such damages.
178
+
179
+ 9. Accepting Warranty or Additional Liability. While redistributing
180
+ the Work or Derivative Works thereof, You may choose to offer,
181
+ and charge a fee for, acceptance of support, warranty, indemnity,
182
+ or other liability obligations and/or rights consistent with this
183
+ License. However, in accepting such obligations, You may act only
184
+ on Your own behalf and on Your sole responsibility, not on behalf
185
+ of any other Contributor, and only if You agree to indemnify,
186
+ defend, and hold each Contributor harmless for any liability
187
+ incurred by, or claims asserted against, such Contributor by reason
188
+ of your accepting any such warranty or additional liability.
189
+
190
+ ---
191
+
192
+ ## @modelcontextprotocol/server-stdio
193
+
194
+ **Project**: https://github.com/modelcontextprotocol/modelcontextprotocol
195
+ **License**: MIT
196
+ **Copyright**: Anthropic Inc.
197
+
198
+ MIT License
199
+
200
+ Copyright (c) 2024 Anthropic Inc.
201
+
202
+ Permission is hereby granted, free of charge, to any person obtaining a copy
203
+ of this software and associated documentation files (the "Software"), to deal
204
+ in the Software without restriction, including without limitation the rights
205
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
206
+ copies of the Software, and to permit persons to whom the Software is
207
+ furnished to do so, subject to the following conditions:
208
+
209
+ The above copyright notice and this permission notice shall be included in all
210
+ copies or substantial portions of the Software.
211
+
212
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
213
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
214
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
215
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
216
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
217
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
218
+ SOFTWARE.
219
+
220
+ ---
221
+
222
+ ## execa
223
+
224
+ **Project**: https://github.com/sindresorhus/execa
225
+ **License**: MIT
226
+ **Copyright**: Copyright (c) Sindre Sorhus
227
+
228
+ MIT License
229
+
230
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
231
+
232
+ Permission is hereby granted, free of charge, to any person obtaining a copy
233
+ of this software and associated documentation files (the "Software"), to deal
234
+ in the Software without restriction, including without limitation the rights
235
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
236
+ copies of the Software, and to permit persons to whom the Software is
237
+ furnished to do so, subject to the following conditions:
238
+
239
+ The above copyright notice and this permission notice shall be included in all
240
+ copies or substantial portions of the Software.
241
+
242
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
243
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
244
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
245
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
246
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
247
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
248
+ SOFTWARE.
249
+
250
+ ---
251
+
252
+ ## conf
253
+
254
+ **Project**: https://github.com/sindresorhus/conf
255
+ **License**: MIT
256
+ **Copyright**: Copyright (c) Sindre Sorhus
257
+
258
+ MIT License - see execa section
259
+
260
+ ---
261
+
262
+ ## semver
263
+
264
+ **Project**: https://github.com/npm/node-semver
265
+ **License**: ISC
266
+ **Copyright**: Copyright (c) Isaac Z. Schlueter
267
+
268
+ ISC License
269
+
270
+ Permission to use, copy, modify, and/or distribute this software for any
271
+ purpose with or without fee is hereby granted, provided that the above
272
+ copyright notice and this permission notice appear in all copies.
273
+
274
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
275
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
276
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
277
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
278
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
279
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
280
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
281
+
282
+ ---
283
+
284
+ ## 封装声明
285
+
286
+ 本项目 `@bsbofmusic/agent-browser-mcp-opencode` 是对上游项目 [agent-browser](https://github.com/vercel-labs/agent-browser) 的 MCP 封装。
287
+
288
+ - 本项目不是上游项目的官方发布
289
+ - 上游项目的名称、商标与版权归其各自权利人所有
290
+ - 上游项目按 Apache-2.0 许可证授权使用
291
+ - 本项目包含上述许可证的完整文本