safari-devtools-mcp 0.1.2 → 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.
Files changed (2) hide show
  1. package/README.md +52 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,6 +6,8 @@
6
6
 
7
7
  ## [Changelog](./CHANGELOG.md) | [Contributing](./CONTRIBUTING.md)
8
8
 
9
+ > **Note:** This server exposes browser content (page data, console logs, network traffic) to MCP clients. Avoid browsing sensitive websites or entering credentials while a session is active.
10
+
9
11
  ## Key features
10
12
 
11
13
  - **Browser debugging**: Capture console logs, inspect network requests, and evaluate JavaScript — with stack traces and full request/response details.
@@ -36,7 +38,7 @@ Standard MCP config:
36
38
  "mcpServers": {
37
39
  "safari-devtools": {
38
40
  "command": "npx",
39
- "args": ["safari-devtools-mcp"]
41
+ "args": ["-y", "safari-devtools-mcp"]
40
42
  }
41
43
  }
42
44
  }
@@ -46,7 +48,7 @@ Standard MCP config:
46
48
  <summary>Claude Code</summary>
47
49
 
48
50
  ```bash
49
- claude mcp add safari-devtools -- npx safari-devtools-mcp
51
+ claude mcp add safari-devtools -- npx -y safari-devtools-mcp
50
52
  ```
51
53
 
52
54
  Or add to your project's `.mcp.json` using the standard config above.
@@ -74,6 +76,54 @@ Add the standard config to `.vscode/mcp.json`.
74
76
 
75
77
  </details>
76
78
 
79
+ <details>
80
+ <summary>Copilot CLI</summary>
81
+
82
+ ```bash
83
+ copilot mcp add safari-devtools -- npx -y safari-devtools-mcp
84
+ ```
85
+
86
+ </details>
87
+
88
+ <details>
89
+ <summary>Gemini CLI</summary>
90
+
91
+ ```bash
92
+ gemini mcp add safari-devtools -- npx -y safari-devtools-mcp
93
+ ```
94
+
95
+ Or add the standard config to your `~/.gemini/settings.json`.
96
+
97
+ </details>
98
+
99
+ <details>
100
+ <summary>Gemini Code Assist</summary>
101
+
102
+ Add the standard config to your `.gemini/settings.json` in the project root.
103
+
104
+ </details>
105
+
106
+ <details>
107
+ <summary>JetBrains AI Assistant & Junie</summary>
108
+
109
+ Add the standard config to your `.junie/mcp.json` in the project root.
110
+
111
+ </details>
112
+
113
+ <details>
114
+ <summary>Visual Studio</summary>
115
+
116
+ Add the standard config to your `.vs/mcp.json` in the solution root.
117
+
118
+ </details>
119
+
120
+ <details>
121
+ <summary>Warp</summary>
122
+
123
+ Add the standard config to your Warp MCP settings file at `~/.warp/mcp.json`.
124
+
125
+ </details>
126
+
77
127
  <details>
78
128
  <summary>From source</summary>
79
129
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "safari-devtools-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server for Safari DevTools — browser debugging and automation for AI coding agents",
5
5
  "type": "module",
6
6
  "main": "build/src/index.js",