1- # iwdp-mcp
1+ # iwdp-mcp — iOS Safari Debugging MCP Server
22
33[ ![ CI] ( https://github.com/nnemirovsky/iwdp-mcp/actions/workflows/test.yml/badge.svg )] ( https://github.com/nnemirovsky/iwdp-mcp/actions/workflows/test.yml )
44[ ![ Lint] ( https://github.com/nnemirovsky/iwdp-mcp/actions/workflows/lint.yml/badge.svg )] ( https://github.com/nnemirovsky/iwdp-mcp/actions/workflows/lint.yml )
@@ -15,6 +15,15 @@ Speaks **WebKit Inspector Protocol** natively — full access to all 27 WebKit I
1515
1616## Installation
1717
18+ ### Claude Code Plugin (recommended)
19+
20+ Inside Claude Code, run:
21+
22+ ```
23+ /plugin marketplace add nnemirovsky/iwdp-mcp
24+ /plugin install iwdp-mcp
25+ ```
26+
1827### Go Install
1928
2029``` bash
@@ -75,6 +84,35 @@ iwdp-cli cookies
7584
7685### MCP Server
7786
87+ <details >
88+ <summary ><strong >Claude Code</strong ></summary >
89+
90+ Install as a plugin (recommended):
91+
92+ ```
93+ /plugin marketplace add nnemirovsky/iwdp-mcp
94+ /plugin install iwdp-mcp
95+ ```
96+
97+ Or add to your project's ` .mcp.json ` :
98+
99+ ``` json
100+ {
101+ "mcpServers" : {
102+ "iwdp-mcp" : {
103+ "command" : " iwdp-mcp"
104+ }
105+ }
106+ }
107+ ```
108+
109+ Or via CLI:
110+
111+ ``` sh
112+ claude mcp add iwdp-mcp -- iwdp-mcp
113+ ```
114+ </details >
115+
78116<details >
79117<summary ><strong >Claude Desktop</strong ></summary >
80118
@@ -92,9 +130,31 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
92130</details >
93131
94132<details >
95- <summary ><strong >Claude Code</strong ></summary >
133+ <summary ><strong >VS Code / VS Code Insiders</strong ></summary >
134+
135+ Click the install badges at the top of this README, or add to ` .vscode/mcp.json ` :
136+
137+ ``` json
138+ {
139+ "servers" : {
140+ "iwdp-mcp" : {
141+ "command" : " iwdp-mcp"
142+ }
143+ }
144+ }
145+ ```
146+
147+ Or via CLI:
148+
149+ ``` sh
150+ code --add-mcp ' {"name":"iwdp-mcp","command":"iwdp-mcp"}'
151+ ```
152+ </details >
96153
97- Add to your project's ` .mcp.json ` :
154+ <details >
155+ <summary ><strong >Cursor</strong ></summary >
156+
157+ Click the Cursor install badge at the top of this README, or add to ` .cursor/mcp.json ` :
98158
99159``` json
100160{
@@ -105,31 +165,69 @@ Add to your project's `.mcp.json`:
105165 }
106166}
107167```
168+ </details >
108169
109- Or install as a Claude Code plugin:
170+ <details >
171+ <summary ><strong >Windsurf</strong ></summary >
110172
173+ Add to ` ~/.codeium/windsurf/mcp_config.json ` :
174+
175+ ``` json
176+ {
177+ "mcpServers" : {
178+ "iwdp-mcp" : {
179+ "command" : " iwdp-mcp"
180+ }
181+ }
182+ }
111183```
112- /plugin marketplace add nnemirovsky/iwdp-mcp
113- /plugin install iwdp-mcp
184+ </details >
185+
186+ <details >
187+ <summary ><strong >Codex CLI</strong ></summary >
188+
189+ ``` sh
190+ codex mcp add iwdp-mcp -- iwdp-mcp
191+ ```
192+
193+ Or add to ` ~/.codex/config.toml ` :
194+
195+ ``` toml
196+ [mcp_servers .iwdp-mcp ]
197+ command = " iwdp-mcp"
114198```
115199</details >
116200
117201<details >
118- <summary ><strong >VS Code / Cursor </strong ></summary >
202+ <summary ><strong >Antigravity </strong ></summary >
119203
120- Add to ` .vscode/mcp .json` in your workspace :
204+ Add to ` ~/.gemini/antigravity/mcp_config .json` :
121205
122206``` json
123207{
124- "servers " : {
208+ "mcpServers " : {
125209 "iwdp-mcp" : {
126210 "command" : " iwdp-mcp"
127211 }
128212 }
129213}
130214```
215+ </details >
216+
217+ <details >
218+ <summary ><strong >JetBrains IDEs</strong ></summary >
131219
132- Or click the install badges at the top of this README.
220+ Go to ** Settings → Tools → AI Assistant → Model Context Protocol (MCP) → Add** , or add the following JSON config:
221+
222+ ``` json
223+ {
224+ "mcpServers" : {
225+ "iwdp-mcp" : {
226+ "command" : " iwdp-mcp"
227+ }
228+ }
229+ }
230+ ```
133231</details >
134232
135233### Claude Code Prompts
0 commit comments