@cgaspard/webappmcp 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 CHANGED
@@ -183,10 +183,16 @@ export default {
183
183
  }
184
184
  ```
185
185
 
186
- ## Claude CLI Configuration
186
+ ## MCP Client Configuration
187
187
 
188
- Add to your Claude CLI configuration:
188
+ ### Claude Desktop App
189
189
 
190
+ Add using the command line:
191
+ ```bash
192
+ claude mcp add webapp-sse sse:http://localhost:3000/mcp/sse
193
+ ```
194
+
195
+ Or manually edit your configuration:
190
196
  ```json
191
197
  {
192
198
  "mcpServers": {
@@ -200,6 +206,69 @@ Add to your Claude CLI configuration:
200
206
  }
201
207
  ```
202
208
 
209
+ ### Claude Code CLI
210
+
211
+ Add to your Claude Code configuration (`~/.config/claude-code/settings.json`):
212
+ ```json
213
+ {
214
+ "mcpServers": {
215
+ "webapp": {
216
+ "transport": {
217
+ "type": "sse",
218
+ "url": "http://localhost:3000/mcp/sse"
219
+ }
220
+ }
221
+ }
222
+ }
223
+ ```
224
+
225
+ ### Cline (VS Code Extension)
226
+
227
+ Add to your Cline MCP settings in VS Code:
228
+ ```json
229
+ {
230
+ "webapp": {
231
+ "transport": {
232
+ "type": "sse",
233
+ "url": "http://localhost:3000/mcp/sse"
234
+ }
235
+ }
236
+ }
237
+ ```
238
+
239
+ ### Continue.dev
240
+
241
+ Add to your Continue configuration (`~/.continue/config.json`):
242
+ ```json
243
+ {
244
+ "models": [...],
245
+ "mcpServers": {
246
+ "webapp": {
247
+ "transport": {
248
+ "type": "sse",
249
+ "url": "http://localhost:3000/mcp/sse"
250
+ }
251
+ }
252
+ }
253
+ }
254
+ ```
255
+
256
+ ### Zed Editor
257
+
258
+ Add to your Zed assistant panel settings:
259
+ ```json
260
+ {
261
+ "mcpServers": {
262
+ "webapp": {
263
+ "transport": {
264
+ "type": "sse",
265
+ "url": "http://localhost:3000/mcp/sse"
266
+ }
267
+ }
268
+ }
269
+ }
270
+ ```
271
+
203
272
  ## Examples
204
273
 
205
274
  See the `examples` directory for complete working examples with:
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cgaspard/webappmcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "WebApp MCP - Model Context Protocol integration for web applications",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -74,4 +74,4 @@
74
74
  ],
75
75
  "author": "cgaspard",
76
76
  "license": "MIT"
77
- }
77
+ }