@crush-protocol/mcp-client 0.4.9 → 0.4.10
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 +562 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,20 +62,319 @@ Detailed tool guidance:
|
|
|
62
62
|
Recommended:
|
|
63
63
|
|
|
64
64
|
```sh
|
|
65
|
-
npx -y @crush-protocol/mcp-client setup --
|
|
65
|
+
npx -y @crush-protocol/mcp-client setup --all
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
This writes MCP config for all supported hosts at once. To target a single host: `npx -y @crush-protocol/mcp-client setup --cursor`
|
|
69
|
+
|
|
70
|
+
### Client Configuration
|
|
71
|
+
|
|
72
|
+
<details>
|
|
73
|
+
<summary><strong>Cursor</strong></summary>
|
|
74
|
+
|
|
75
|
+
[](https://docs.cursor.com/context/model-context-protocol)
|
|
76
|
+
|
|
77
|
+
[](https://cursor.com/install-mcp?name=crush-protocol&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjcnVzaC1wcm90b2NvbC9tY3AtY2xpZW50Il19)
|
|
78
|
+
|
|
79
|
+
```json
|
|
80
|
+
{
|
|
81
|
+
"mcpServers": {
|
|
82
|
+
"crush-protocol": {
|
|
83
|
+
"command": "npx",
|
|
84
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
66
88
|
```
|
|
67
89
|
|
|
90
|
+
</details>
|
|
91
|
+
|
|
68
92
|
<details>
|
|
69
|
-
<summary>
|
|
93
|
+
<summary><strong>Claude Code</strong></summary>
|
|
94
|
+
|
|
95
|
+
[](https://docs.anthropic.com/en/docs/claude-code/mcp)
|
|
70
96
|
|
|
71
97
|
```sh
|
|
72
|
-
npx -y @crush-protocol/mcp-client
|
|
73
|
-
|
|
98
|
+
claude mcp add --scope user crush-protocol -- npx -y @crush-protocol/mcp-client
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
</details>
|
|
102
|
+
|
|
103
|
+
<details>
|
|
104
|
+
<summary><strong>OpenAI Codex</strong></summary>
|
|
105
|
+
|
|
106
|
+
[](https://developers.openai.com/codex/mcp)
|
|
107
|
+
|
|
108
|
+
**CLI:** `codex mcp add crush-protocol -- npx -y @crush-protocol/mcp-client`
|
|
109
|
+
|
|
110
|
+
**Local** (add to `~/.codex/config.toml`):
|
|
111
|
+
|
|
112
|
+
```toml
|
|
113
|
+
[mcp_servers.crush-protocol]
|
|
114
|
+
command = "npx"
|
|
115
|
+
args = ["-y", "@crush-protocol/mcp-client"]
|
|
116
|
+
startup_timeout_ms = 20000
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
</details>
|
|
120
|
+
|
|
121
|
+
<details>
|
|
122
|
+
<summary><strong>Google Gemini CLI</strong></summary>
|
|
123
|
+
|
|
124
|
+
[](https://google-gemini.github.io/gemini-cli/docs/tools/mcp-server.html)
|
|
125
|
+
|
|
126
|
+
Add to `~/.gemini/settings.json`:
|
|
127
|
+
|
|
128
|
+
```json
|
|
129
|
+
{
|
|
130
|
+
"mcpServers": {
|
|
131
|
+
"crush-protocol": {
|
|
132
|
+
"command": "npx",
|
|
133
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
</details>
|
|
140
|
+
|
|
141
|
+
<details>
|
|
142
|
+
<summary><strong>VS Code</strong></summary>
|
|
143
|
+
|
|
144
|
+
[](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
|
|
145
|
+
|
|
146
|
+
Add to `.vscode/mcp.json`:
|
|
147
|
+
|
|
148
|
+
```json
|
|
149
|
+
{
|
|
150
|
+
"servers": {
|
|
151
|
+
"crush-protocol": {
|
|
152
|
+
"type": "stdio",
|
|
153
|
+
"command": "npx",
|
|
154
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
</details>
|
|
161
|
+
|
|
162
|
+
<details>
|
|
163
|
+
<summary><strong>Windsurf</strong></summary>
|
|
164
|
+
|
|
165
|
+
[](https://docs.windsurf.com/windsurf/cascade/mcp)
|
|
166
|
+
|
|
167
|
+
```json
|
|
168
|
+
{
|
|
169
|
+
"mcpServers": {
|
|
170
|
+
"crush-protocol": {
|
|
171
|
+
"command": "npx",
|
|
172
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
</details>
|
|
179
|
+
|
|
180
|
+
<details>
|
|
181
|
+
<summary><strong>Claude Desktop</strong></summary>
|
|
182
|
+
|
|
183
|
+
[](https://modelcontextprotocol.io/quickstart/user)
|
|
184
|
+
|
|
185
|
+
Edit `claude_desktop_config.json`:
|
|
186
|
+
|
|
187
|
+
```json
|
|
188
|
+
{
|
|
189
|
+
"mcpServers": {
|
|
190
|
+
"crush-protocol": {
|
|
191
|
+
"command": "npx",
|
|
192
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
</details>
|
|
199
|
+
|
|
200
|
+
<details>
|
|
201
|
+
<summary><strong>OpenCode</strong></summary>
|
|
202
|
+
|
|
203
|
+
[](https://opencode.ai/docs/mcp-servers)
|
|
204
|
+
|
|
205
|
+
Add to `~/.config/opencode/opencode.json`:
|
|
206
|
+
|
|
207
|
+
```json
|
|
208
|
+
{
|
|
209
|
+
"$schema": "https://opencode.ai/config.json",
|
|
210
|
+
"mcp": {
|
|
211
|
+
"crush-protocol": {
|
|
212
|
+
"type": "local",
|
|
213
|
+
"command": ["npx", "-y", "@crush-protocol/mcp-client"],
|
|
214
|
+
"enabled": true
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
</details>
|
|
221
|
+
|
|
222
|
+
<details>
|
|
223
|
+
<summary><strong>Warp</strong></summary>
|
|
224
|
+
|
|
225
|
+
[](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server)
|
|
226
|
+
|
|
227
|
+
```json
|
|
228
|
+
{
|
|
229
|
+
"crush-protocol": {
|
|
230
|
+
"command": "npx",
|
|
231
|
+
"args": ["-y", "@crush-protocol/mcp-client"],
|
|
232
|
+
"env": {},
|
|
233
|
+
"working_directory": null,
|
|
234
|
+
"start_on_launch": true
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
</details>
|
|
240
|
+
|
|
241
|
+
<details>
|
|
242
|
+
<summary><strong>Kiro</strong></summary>
|
|
243
|
+
|
|
244
|
+
[](https://kiro.dev/docs/mcp/configuration/)
|
|
245
|
+
|
|
246
|
+
```json
|
|
247
|
+
{
|
|
248
|
+
"mcpServers": {
|
|
249
|
+
"crush-protocol": {
|
|
250
|
+
"command": "npx",
|
|
251
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
</details>
|
|
258
|
+
|
|
259
|
+
<details>
|
|
260
|
+
<summary><strong>Roo Code</strong></summary>
|
|
261
|
+
|
|
262
|
+
[](https://docs.roocode.com/features/mcp/using-mcp-in-roo)
|
|
263
|
+
|
|
264
|
+
```json
|
|
265
|
+
{
|
|
266
|
+
"mcpServers": {
|
|
267
|
+
"crush-protocol": {
|
|
268
|
+
"command": "npx",
|
|
269
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
</details>
|
|
276
|
+
|
|
277
|
+
<details>
|
|
278
|
+
<summary><strong>Cline</strong></summary>
|
|
279
|
+
|
|
280
|
+
[](https://cline.bot/mcp-marketplace)
|
|
281
|
+
|
|
282
|
+
```json
|
|
283
|
+
{
|
|
284
|
+
"mcpServers": {
|
|
285
|
+
"crush-protocol": {
|
|
286
|
+
"command": "npx",
|
|
287
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
</details>
|
|
294
|
+
|
|
295
|
+
<details>
|
|
296
|
+
<summary><strong>Trae</strong></summary>
|
|
297
|
+
|
|
298
|
+
[](https://docs.trae.ai/ide/model-context-protocol?_lang=en)
|
|
299
|
+
|
|
300
|
+
```json
|
|
301
|
+
{
|
|
302
|
+
"mcpServers": {
|
|
303
|
+
"crush-protocol": {
|
|
304
|
+
"command": "npx",
|
|
305
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
</details>
|
|
312
|
+
|
|
313
|
+
<details>
|
|
314
|
+
<summary><strong>Augment Code</strong></summary>
|
|
315
|
+
|
|
316
|
+
[](https://docs.augmentcode.com/)
|
|
317
|
+
|
|
318
|
+
Hamburger menu → Settings → Tools → `+ Add MCP` → Command: `npx -y @crush-protocol/mcp-client`
|
|
319
|
+
|
|
320
|
+
```json
|
|
321
|
+
"augment.advanced": {
|
|
322
|
+
"mcpServers": [
|
|
323
|
+
{
|
|
324
|
+
"name": "crush-protocol",
|
|
325
|
+
"command": "npx",
|
|
326
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
327
|
+
}
|
|
328
|
+
]
|
|
329
|
+
}
|
|
330
|
+
```
|
|
331
|
+
|
|
332
|
+
</details>
|
|
333
|
+
|
|
334
|
+
<details>
|
|
335
|
+
<summary><strong>Copilot Coding Agent</strong></summary>
|
|
336
|
+
|
|
337
|
+
[](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp)
|
|
338
|
+
|
|
339
|
+
```json
|
|
340
|
+
{
|
|
341
|
+
"mcpServers": {
|
|
342
|
+
"crush-protocol": {
|
|
343
|
+
"type": "local",
|
|
344
|
+
"command": "npx",
|
|
345
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
74
349
|
```
|
|
75
350
|
|
|
76
351
|
</details>
|
|
77
352
|
|
|
78
|
-
|
|
353
|
+
<details>
|
|
354
|
+
<summary><strong>Copilot CLI</strong></summary>
|
|
355
|
+
|
|
356
|
+
[](https://docs.github.com/copilot)
|
|
357
|
+
|
|
358
|
+
Add to `~/.copilot/mcp-config.json`:
|
|
359
|
+
|
|
360
|
+
```json
|
|
361
|
+
{
|
|
362
|
+
"mcpServers": {
|
|
363
|
+
"crush-protocol": {
|
|
364
|
+
"type": "local",
|
|
365
|
+
"command": "npx",
|
|
366
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
```
|
|
371
|
+
|
|
372
|
+
</details>
|
|
373
|
+
|
|
374
|
+
<details>
|
|
375
|
+
<summary><strong>Amazon Q Developer CLI</strong></summary>
|
|
376
|
+
|
|
377
|
+
[](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-mcp-configuration.html)
|
|
79
378
|
|
|
80
379
|
```json
|
|
81
380
|
{
|
|
@@ -88,6 +387,264 @@ Manual MCP host config:
|
|
|
88
387
|
}
|
|
89
388
|
```
|
|
90
389
|
|
|
390
|
+
</details>
|
|
391
|
+
|
|
392
|
+
<details>
|
|
393
|
+
<summary><strong>Amp</strong></summary>
|
|
394
|
+
|
|
395
|
+
[](https://ampcode.com/manual#mcp)
|
|
396
|
+
|
|
397
|
+
```sh
|
|
398
|
+
amp mcp add crush-protocol -- npx -y @crush-protocol/mcp-client
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
</details>
|
|
402
|
+
|
|
403
|
+
<details>
|
|
404
|
+
<summary><strong>Zed</strong></summary>
|
|
405
|
+
|
|
406
|
+
[](https://zed.dev/docs/assistant/context-servers)
|
|
407
|
+
|
|
408
|
+
Add to `settings.json`:
|
|
409
|
+
|
|
410
|
+
```json
|
|
411
|
+
{
|
|
412
|
+
"context_servers": {
|
|
413
|
+
"crush-protocol": {
|
|
414
|
+
"source": "custom",
|
|
415
|
+
"command": "npx",
|
|
416
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
</details>
|
|
423
|
+
|
|
424
|
+
<details>
|
|
425
|
+
<summary><strong>JetBrains AI Assistant</strong></summary>
|
|
426
|
+
|
|
427
|
+
[](https://www.jetbrains.com/help/ai-assistant/configure-an-mcp-server.html)
|
|
428
|
+
|
|
429
|
+
Settings → Tools → AI Assistant → Model Context Protocol (MCP) → `+ Add`
|
|
430
|
+
|
|
431
|
+
```json
|
|
432
|
+
{
|
|
433
|
+
"mcpServers": {
|
|
434
|
+
"crush-protocol": {
|
|
435
|
+
"command": "npx",
|
|
436
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
```
|
|
441
|
+
|
|
442
|
+
</details>
|
|
443
|
+
|
|
444
|
+
<details>
|
|
445
|
+
<summary><strong>Qwen Code</strong></summary>
|
|
446
|
+
|
|
447
|
+
[](https://qwenlm.github.io/qwen-code-docs/en/users/features/mcp/)
|
|
448
|
+
|
|
449
|
+
**CLI:** `qwen mcp add crush-protocol npx -y @crush-protocol/mcp-client`
|
|
450
|
+
|
|
451
|
+
```json
|
|
452
|
+
{
|
|
453
|
+
"mcpServers": {
|
|
454
|
+
"crush-protocol": {
|
|
455
|
+
"command": "npx",
|
|
456
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
```
|
|
461
|
+
|
|
462
|
+
</details>
|
|
463
|
+
|
|
464
|
+
<details>
|
|
465
|
+
<summary><strong>LM Studio</strong></summary>
|
|
466
|
+
|
|
467
|
+
[](https://lmstudio.ai/blog/lmstudio-v0.3.17)
|
|
468
|
+
|
|
469
|
+
Program → Install → Edit `mcp.json`:
|
|
470
|
+
|
|
471
|
+
```json
|
|
472
|
+
{
|
|
473
|
+
"mcpServers": {
|
|
474
|
+
"crush-protocol": {
|
|
475
|
+
"command": "npx",
|
|
476
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
```
|
|
481
|
+
|
|
482
|
+
</details>
|
|
483
|
+
|
|
484
|
+
<details>
|
|
485
|
+
<summary><strong>Visual Studio 2022</strong></summary>
|
|
486
|
+
|
|
487
|
+
[](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022)
|
|
488
|
+
|
|
489
|
+
```json
|
|
490
|
+
{
|
|
491
|
+
"mcp": {
|
|
492
|
+
"servers": {
|
|
493
|
+
"crush-protocol": {
|
|
494
|
+
"type": "stdio",
|
|
495
|
+
"command": "npx",
|
|
496
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
</details>
|
|
504
|
+
|
|
505
|
+
<details>
|
|
506
|
+
<summary><strong>BoltAI</strong></summary>
|
|
507
|
+
|
|
508
|
+
[](https://docs.boltai.com/docs/plugins/mcp-servers)
|
|
509
|
+
|
|
510
|
+
```json
|
|
511
|
+
{
|
|
512
|
+
"mcpServers": {
|
|
513
|
+
"crush-protocol": {
|
|
514
|
+
"command": "npx",
|
|
515
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
```
|
|
520
|
+
|
|
521
|
+
</details>
|
|
522
|
+
|
|
523
|
+
<details>
|
|
524
|
+
<summary><strong>Perplexity Desktop</strong></summary>
|
|
525
|
+
|
|
526
|
+
[](https://www.perplexity.ai/help-center/en/articles/11502712-local-and-remote-mcps-for-perplexity)
|
|
527
|
+
|
|
528
|
+
Perplexity → Settings → Connectors → Add Connector → Advanced → Server Name: `crush-protocol`
|
|
529
|
+
|
|
530
|
+
```json
|
|
531
|
+
{
|
|
532
|
+
"args": ["-y", "@crush-protocol/mcp-client"],
|
|
533
|
+
"command": "npx",
|
|
534
|
+
"env": {}
|
|
535
|
+
}
|
|
536
|
+
```
|
|
537
|
+
|
|
538
|
+
</details>
|
|
539
|
+
|
|
540
|
+
<details>
|
|
541
|
+
<summary><strong>Kilo Code</strong></summary>
|
|
542
|
+
|
|
543
|
+
[](https://kilocode.ai)
|
|
544
|
+
|
|
545
|
+
```json
|
|
546
|
+
{
|
|
547
|
+
"mcpServers": {
|
|
548
|
+
"crush-protocol": {
|
|
549
|
+
"command": "npx",
|
|
550
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
```
|
|
555
|
+
|
|
556
|
+
</details>
|
|
557
|
+
|
|
558
|
+
<details>
|
|
559
|
+
<summary><strong>Zencoder</strong></summary>
|
|
560
|
+
|
|
561
|
+
[](https://zencoder.ai)
|
|
562
|
+
|
|
563
|
+
Zencoder menu → Agent tools → Add custom MCP:
|
|
564
|
+
|
|
565
|
+
```json
|
|
566
|
+
{
|
|
567
|
+
"command": "npx",
|
|
568
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
569
|
+
}
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
</details>
|
|
573
|
+
|
|
574
|
+
<details>
|
|
575
|
+
<summary><strong>Qodo Gen</strong></summary>
|
|
576
|
+
|
|
577
|
+
[](https://docs.qodo.ai/qodo-documentation/qodo-gen/qodo-gen-chat/agentic-mode/agentic-tools-mcps)
|
|
578
|
+
|
|
579
|
+
Qodo Gen chat → Connect more tools → `+ Add new MCP`
|
|
580
|
+
|
|
581
|
+
```json
|
|
582
|
+
{
|
|
583
|
+
"mcpServers": {
|
|
584
|
+
"crush-protocol": {
|
|
585
|
+
"command": "npx",
|
|
586
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
```
|
|
591
|
+
|
|
592
|
+
</details>
|
|
593
|
+
|
|
594
|
+
<details>
|
|
595
|
+
<summary><strong>Using Bun or Deno</strong></summary>
|
|
596
|
+
|
|
597
|
+
**Bun:**
|
|
598
|
+
|
|
599
|
+
```json
|
|
600
|
+
{
|
|
601
|
+
"mcpServers": {
|
|
602
|
+
"crush-protocol": {
|
|
603
|
+
"command": "bunx",
|
|
604
|
+
"args": ["-y", "@crush-protocol/mcp-client"]
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
```
|
|
609
|
+
|
|
610
|
+
**Deno:**
|
|
611
|
+
|
|
612
|
+
```json
|
|
613
|
+
{
|
|
614
|
+
"mcpServers": {
|
|
615
|
+
"crush-protocol": {
|
|
616
|
+
"command": "deno",
|
|
617
|
+
"args": [
|
|
618
|
+
"run",
|
|
619
|
+
"--allow-env",
|
|
620
|
+
"--allow-net",
|
|
621
|
+
"--allow-read",
|
|
622
|
+
"--allow-write",
|
|
623
|
+
"npm:@crush-protocol/mcp-client"
|
|
624
|
+
]
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
```
|
|
629
|
+
|
|
630
|
+
</details>
|
|
631
|
+
|
|
632
|
+
<details>
|
|
633
|
+
<summary><strong>Windows</strong></summary>
|
|
634
|
+
|
|
635
|
+
```json
|
|
636
|
+
{
|
|
637
|
+
"mcpServers": {
|
|
638
|
+
"crush-protocol": {
|
|
639
|
+
"command": "cmd",
|
|
640
|
+
"args": ["/c", "npx", "-y", "@crush-protocol/mcp-client"]
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
```
|
|
645
|
+
|
|
646
|
+
</details>
|
|
647
|
+
|
|
91
648
|
## Common Commands
|
|
92
649
|
|
|
93
650
|
```sh
|