scuttle-browser 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +5 -22
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,17 +37,13 @@ heading "Hacker News"
37
37
  ## Installation
38
38
 
39
39
  ```bash
40
- # Clone and install
41
- git clone https://github.com/axelkrantz/scuttle.git
42
- cd scuttle
43
- npm install # installs dependencies + downloads Chromium
44
- npm run build
40
+ npm install -g scuttle-browser
45
41
  ```
46
42
 
47
- Or install globally:
43
+ Or run directly with npx (no install needed):
48
44
 
49
45
  ```bash
50
- npm install -g scuttle-browser
46
+ npx -y scuttle-browser
51
47
  ```
52
48
 
53
49
  ## Configuration
@@ -60,8 +56,8 @@ Add to your project's `.mcp.json`:
60
56
  {
61
57
  "mcpServers": {
62
58
  "scuttle": {
63
- "command": "node",
64
- "args": ["/path/to/scuttle/dist/index.js"]
59
+ "command": "npx",
60
+ "args": ["-y", "scuttle-browser"]
65
61
  }
66
62
  }
67
63
  }
@@ -71,19 +67,6 @@ Add to your project's `.mcp.json`:
71
67
 
72
68
  Add to `claude_desktop_config.json`:
73
69
 
74
- ```json
75
- {
76
- "mcpServers": {
77
- "scuttle": {
78
- "command": "node",
79
- "args": ["/path/to/scuttle/dist/index.js"]
80
- }
81
- }
82
- }
83
- ```
84
-
85
- ### With npx (no clone needed)
86
-
87
70
  ```json
88
71
  {
89
72
  "mcpServers": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scuttle-browser",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Browser bridge for LLMs — exposes web pages as annotated accessibility trees via MCP",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",