safari-devtools-mcp 0.1.2 → 0.1.3
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 +50 -0
- 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.
|
|
@@ -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 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 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
|
|