@quanta-intellect/vessel-browser 0.1.25 → 0.1.27
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 +20 -6
- package/out/main/index.js +252 -103
- package/out/preload/index.js +2 -0
- package/out/renderer/assets/{index-BynCvURs.css → index-DP2yMHwF.css} +67 -0
- package/out/renderer/assets/{index-32axMD1q.js → index-v71lXiVB.js} +656 -458
- package/out/renderer/index.html +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-
# Vessel: Your Agent's Browser
|
|
5
|
-
</div>
|
|
6
4
|
|
|
5
|
+
<a href="https://snapcraft.io/vessel-browser">
|
|
6
|
+
<img alt="Get it from the Snap Store" src=https://snapcraft.io/en/dark/install.svg />
|
|
7
|
+
</a>
|
|
8
|
+
<a href="https://www.producthunt.com/products/quanta-intellect?embed=true&utm_source=badge-featured&utm_medium=badge&utm_campaign=badge-vessel-browser-from-quanta-intellect" target="_blank" rel="noopener noreferrer"><img alt="Vessel Browser from Quanta Intellect - The browser where agents drive and humans supervise | Product Hunt" width="250" height="54" src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1107491&theme=dark&t=1774779141692"></a>
|
|
7
9
|
|
|
10
|
+
# Vessel: Your Agent's Browser
|
|
11
|
+
</div>
|
|
8
12
|
|
|
9
13
|
|
|
10
|
-
Open
|
|
14
|
+
Open source chromium-based browser for persistent web agents on Linux (Mac/Windows support to come).
|
|
11
15
|
|
|
12
16
|
Vessel gives external agent harnesses a real browser with durable state, MCP control, and a human-visible supervisory UI. It is built for long-running workflows where the agent drives and the human audits, intervenes, and redirects when needed.
|
|
13
17
|
|
|
@@ -25,6 +29,8 @@ https://github.com/user-attachments/assets/0a72b48a-873a-4eb0-b8f2-23e34d8472c4
|
|
|
25
29
|
|
|
26
30
|
## Quick Start
|
|
27
31
|
|
|
32
|
+
Want the full agent toolkit from day one? [Start a 5-Day Free Trial of Vessel Premium](https://vesselpremium.quantaintellect.com/checkout).
|
|
33
|
+
|
|
28
34
|
### Fastest Install Today
|
|
29
35
|
|
|
30
36
|
Linux AppImage from GitHub Releases:
|
|
@@ -317,7 +323,10 @@ Generic HTTP MCP config:
|
|
|
317
323
|
"mcpServers": {
|
|
318
324
|
"vessel": {
|
|
319
325
|
"type": "http",
|
|
320
|
-
"url": "http://127.0.0.1:3100/mcp"
|
|
326
|
+
"url": "http://127.0.0.1:3100/mcp",
|
|
327
|
+
"headers": {
|
|
328
|
+
"Authorization": "Bearer <token from ~/.config/vessel/mcp-auth.json>"
|
|
329
|
+
}
|
|
321
330
|
}
|
|
322
331
|
}
|
|
323
332
|
}
|
|
@@ -329,6 +338,8 @@ Hermes Agent `config.yaml` MCP config:
|
|
|
329
338
|
mcp_servers:
|
|
330
339
|
vessel:
|
|
331
340
|
url: "http://127.0.0.1:3100/mcp"
|
|
341
|
+
headers:
|
|
342
|
+
Authorization: "Bearer <token from ~/.config/vessel/mcp-auth.json>"
|
|
332
343
|
timeout: 180
|
|
333
344
|
connect_timeout: 30
|
|
334
345
|
```
|
|
@@ -349,14 +360,17 @@ vessel-browser-mcp
|
|
|
349
360
|
Helper examples:
|
|
350
361
|
|
|
351
362
|
```bash
|
|
352
|
-
# Generic JSON snippet
|
|
363
|
+
# Generic JSON snippet with Authorization header
|
|
353
364
|
vessel-browser-mcp
|
|
354
365
|
|
|
355
|
-
# Hermes-ready YAML snippet
|
|
366
|
+
# Hermes-ready YAML snippet with Authorization header
|
|
356
367
|
vessel-browser-mcp --format hermes
|
|
357
368
|
|
|
358
369
|
# Raw MCP endpoint URL
|
|
359
370
|
vessel-browser-mcp --format url
|
|
371
|
+
|
|
372
|
+
# Raw MCP bearer token
|
|
373
|
+
vessel-browser-mcp --format token
|
|
360
374
|
```
|
|
361
375
|
|
|
362
376
|
Source install update helpers:
|