safari-devtools-mcp 0.1.3 → 0.1.4
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ Standard MCP config:
|
|
|
38
38
|
"mcpServers": {
|
|
39
39
|
"safari-devtools": {
|
|
40
40
|
"command": "npx",
|
|
41
|
-
"args": ["safari-devtools-mcp"]
|
|
41
|
+
"args": ["-y", "safari-devtools-mcp"]
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -48,7 +48,7 @@ Standard MCP config:
|
|
|
48
48
|
<summary>Claude Code</summary>
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
claude mcp add safari-devtools -- npx safari-devtools-mcp
|
|
51
|
+
claude mcp add safari-devtools -- npx -y safari-devtools-mcp
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
Or add to your project's `.mcp.json` using the standard config above.
|
|
@@ -80,7 +80,7 @@ Add the standard config to `.vscode/mcp.json`.
|
|
|
80
80
|
<summary>Copilot CLI</summary>
|
|
81
81
|
|
|
82
82
|
```bash
|
|
83
|
-
copilot mcp add safari-devtools -- npx safari-devtools-mcp
|
|
83
|
+
copilot mcp add safari-devtools -- npx -y safari-devtools-mcp
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
</details>
|
|
@@ -89,7 +89,7 @@ copilot mcp add safari-devtools -- npx safari-devtools-mcp
|
|
|
89
89
|
<summary>Gemini CLI</summary>
|
|
90
90
|
|
|
91
91
|
```bash
|
|
92
|
-
gemini mcp add safari-devtools -- npx safari-devtools-mcp
|
|
92
|
+
gemini mcp add safari-devtools -- npx -y safari-devtools-mcp
|
|
93
93
|
```
|
|
94
94
|
|
|
95
95
|
Or add the standard config to your `~/.gemini/settings.json`.
|