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.
- package/README.md +5 -22
- 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
|
-
|
|
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
|
|
43
|
+
Or run directly with npx (no install needed):
|
|
48
44
|
|
|
49
45
|
```bash
|
|
50
|
-
|
|
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": "
|
|
64
|
-
"args": ["
|
|
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": {
|