barebrowse 0.4.5 → 0.4.6

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
@@ -18,7 +18,7 @@
18
18
 
19
19
  barebrowse gives your AI agent a real browser. Navigate, read, interact, move on.
20
20
 
21
- It runs on whatever browser you already have -- your sessions, your cookies. Pages come back stripped to what matters -- 40-90% fewer tokens than raw output.
21
+ It uses the browser you already have -- your sessions, your cookies. Pages come back stripped to what matters -- 40-90% fewer tokens than raw output.
22
22
 
23
23
  No Playwright. Zero dependencies. No bundled browser. No 200MB download.
24
24
 
package/mcp-server.js CHANGED
@@ -249,7 +249,7 @@ async function handleMessage(msg) {
249
249
  return jsonrpcResponse(id, {
250
250
  protocolVersion: '2024-11-05',
251
251
  capabilities: { tools: {} },
252
- serverInfo: { name: 'barebrowse', version: '0.4.5' },
252
+ serverInfo: { name: 'barebrowse', version: '0.4.6' },
253
253
  });
254
254
  }
255
255
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barebrowse",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Authenticated web browsing for autonomous agents via CDP. URL in, pruned ARIA snapshot out.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",