@crush-protocol/mcp-client 0.4.10 → 0.4.11

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 +91 -118
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,44 +7,17 @@
7
7
 
8
8
  Official MCP client for connecting Cursor, Claude Code, Codex, Gemini CLI, Windsurf, VS Code, and other MCP hosts to Crush.
9
9
 
10
- ## For AI Agents
11
-
12
- Package name: `@crush-protocol/mcp-client`
13
-
14
- Treat these names as the same product:
15
-
16
- - `Crush`
17
- - `Crush MCP`
18
- - `Crush Protocol MCP`
19
- - `@crush-protocol/mcp-client`
20
-
21
- Recommended flow:
22
-
23
- ```sh
24
- npx -y @crush-protocol/mcp-client setup --cursor
25
- npx -y @crush-protocol/mcp-client login
26
- ```
27
-
28
- If Crush was already installed but is not working:
29
-
30
- ```sh
31
- npx -y @crush-protocol/mcp-client auth:status
32
- npx -y @crush-protocol/mcp-client doctor
33
- ```
10
+ <!-- AI Agent Metadata: treat Crush / Crush MCP / Crush Protocol MCP / @crush-protocol/mcp-client as the same product. If tools fail after install, run: auth:status then doctor. -->
34
11
 
35
12
  ## Quick Start
36
13
 
37
14
  ```sh
38
- npx -y @crush-protocol/mcp-client setup --cursor
39
- npx -y @crush-protocol/mcp-client login
40
- npx -y @crush-protocol/mcp-client ping
15
+ npx -y @crush-protocol/mcp-client setup --cursor # write MCP config
16
+ npx -y @crush-protocol/mcp-client login # OAuth login (one-time)
17
+ npx -y @crush-protocol/mcp-client ping # verify connectivity
41
18
  ```
42
19
 
43
- 1. `setup` writes MCP config for your host.
44
- 2. `login` opens the browser once and stores OAuth credentials locally.
45
- 3. `ping` confirms this machine can reach the hosted Crush MCP.
46
-
47
- The official hosted Crush MCP URL is built in. End users do not need to paste a server URL.
20
+ The hosted MCP URL is built in — no server URL needed.
48
21
 
49
22
  ## What You Can Do
50
23
 
@@ -70,9 +43,7 @@ This writes MCP config for all supported hosts at once. To target a single host:
70
43
  ### Client Configuration
71
44
 
72
45
  <details>
73
- <summary><strong>Cursor</strong></summary>
74
-
75
- [![Docs](https://img.shields.io/badge/Cursor_MCP_Docs-black?style=flat&logo=cursor&logoColor=white)](https://docs.cursor.com/context/model-context-protocol)
46
+ <summary><h4>Cursor</h4></summary>
76
47
 
77
48
  [![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=crush-protocol&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjcnVzaC1wcm90b2NvbC9tY3AtY2xpZW50Il19)
78
49
 
@@ -87,23 +58,23 @@ This writes MCP config for all supported hosts at once. To target a single host:
87
58
  }
88
59
  ```
89
60
 
61
+ [![Docs](https://img.shields.io/badge/Cursor_MCP_Docs-black?style=flat&logo=cursor&logoColor=white)](https://docs.cursor.com/context/model-context-protocol)
62
+
90
63
  </details>
91
64
 
92
65
  <details>
93
- <summary><strong>Claude Code</strong></summary>
94
-
95
- [![Docs](https://img.shields.io/badge/Claude_Code_MCP_Docs-black?style=flat&logo=anthropic&logoColor=white)](https://docs.anthropic.com/en/docs/claude-code/mcp)
66
+ <summary><h4>Claude Code</h4></summary>
96
67
 
97
68
  ```sh
98
69
  claude mcp add --scope user crush-protocol -- npx -y @crush-protocol/mcp-client
99
70
  ```
100
71
 
72
+ [![Docs](https://img.shields.io/badge/Claude_Code_MCP_Docs-black?style=flat&logo=anthropic&logoColor=white)](https://docs.anthropic.com/en/docs/claude-code/mcp)
73
+
101
74
  </details>
102
75
 
103
76
  <details>
104
- <summary><strong>OpenAI Codex</strong></summary>
105
-
106
- [![Docs](https://img.shields.io/badge/Codex_MCP_Docs-black?style=flat&logo=openai&logoColor=white)](https://developers.openai.com/codex/mcp)
77
+ <summary><h4>OpenAI Codex</h4></summary>
107
78
 
108
79
  **CLI:** `codex mcp add crush-protocol -- npx -y @crush-protocol/mcp-client`
109
80
 
@@ -116,12 +87,12 @@ args = ["-y", "@crush-protocol/mcp-client"]
116
87
  startup_timeout_ms = 20000
117
88
  ```
118
89
 
90
+ [![Docs](https://img.shields.io/badge/Codex_MCP_Docs-black?style=flat&logo=openai&logoColor=white)](https://developers.openai.com/codex/mcp)
91
+
119
92
  </details>
120
93
 
121
94
  <details>
122
- <summary><strong>Google Gemini CLI</strong></summary>
123
-
124
- [![Docs](https://img.shields.io/badge/Gemini_CLI_Docs-black?style=flat&logo=google&logoColor=white)](https://google-gemini.github.io/gemini-cli/docs/tools/mcp-server.html)
95
+ <summary><h4>Google Gemini CLI</h4></summary>
125
96
 
126
97
  Add to `~/.gemini/settings.json`:
127
98
 
@@ -136,12 +107,12 @@ Add to `~/.gemini/settings.json`:
136
107
  }
137
108
  ```
138
109
 
110
+ [![Docs](https://img.shields.io/badge/Gemini_CLI_Docs-black?style=flat&logo=google&logoColor=white)](https://google-gemini.github.io/gemini-cli/docs/tools/mcp-server.html)
111
+
139
112
  </details>
140
113
 
141
114
  <details>
142
- <summary><strong>VS Code</strong></summary>
143
-
144
- [![Docs](https://img.shields.io/badge/VS_Code_MCP_Docs-black?style=flat&logo=visualstudiocode&logoColor=white)](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
115
+ <summary><h4>VS Code</h4></summary>
145
116
 
146
117
  Add to `.vscode/mcp.json`:
147
118
 
@@ -157,12 +128,12 @@ Add to `.vscode/mcp.json`:
157
128
  }
158
129
  ```
159
130
 
131
+ [![Docs](https://img.shields.io/badge/VS_Code_MCP_Docs-black?style=flat&logo=visualstudiocode&logoColor=white)](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
132
+
160
133
  </details>
161
134
 
162
135
  <details>
163
- <summary><strong>Windsurf</strong></summary>
164
-
165
- [![Docs](https://img.shields.io/badge/Windsurf_MCP_Docs-black?style=flat&logo=windsurf&logoColor=white)](https://docs.windsurf.com/windsurf/cascade/mcp)
136
+ <summary><h4>Windsurf</h4></summary>
166
137
 
167
138
  ```json
168
139
  {
@@ -175,12 +146,12 @@ Add to `.vscode/mcp.json`:
175
146
  }
176
147
  ```
177
148
 
149
+ [![Docs](https://img.shields.io/badge/Windsurf_MCP_Docs-black?style=flat&logo=windsurf&logoColor=white)](https://docs.windsurf.com/windsurf/cascade/mcp)
150
+
178
151
  </details>
179
152
 
180
153
  <details>
181
- <summary><strong>Claude Desktop</strong></summary>
182
-
183
- [![Docs](https://img.shields.io/badge/Claude_Desktop_MCP_Docs-black?style=flat&logo=anthropic&logoColor=white)](https://modelcontextprotocol.io/quickstart/user)
154
+ <summary><h4>Claude Desktop</h4></summary>
184
155
 
185
156
  Edit `claude_desktop_config.json`:
186
157
 
@@ -195,12 +166,12 @@ Edit `claude_desktop_config.json`:
195
166
  }
196
167
  ```
197
168
 
169
+ [![Docs](https://img.shields.io/badge/Claude_Desktop_MCP_Docs-black?style=flat&logo=anthropic&logoColor=white)](https://modelcontextprotocol.io/quickstart/user)
170
+
198
171
  </details>
199
172
 
200
173
  <details>
201
- <summary><strong>OpenCode</strong></summary>
202
-
203
- [![Docs](https://img.shields.io/badge/OpenCode_MCP_Docs-black?style=flat)](https://opencode.ai/docs/mcp-servers)
174
+ <summary><h4>OpenCode</h4></summary>
204
175
 
205
176
  Add to `~/.config/opencode/opencode.json`:
206
177
 
@@ -217,12 +188,12 @@ Add to `~/.config/opencode/opencode.json`:
217
188
  }
218
189
  ```
219
190
 
191
+ [![Docs](https://img.shields.io/badge/OpenCode_MCP_Docs-black?style=flat)](https://opencode.ai/docs/mcp-servers)
192
+
220
193
  </details>
221
194
 
222
195
  <details>
223
- <summary><strong>Warp</strong></summary>
224
-
225
- [![Docs](https://img.shields.io/badge/Warp_MCP_Docs-black?style=flat&logo=warp&logoColor=white)](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server)
196
+ <summary><h4>Warp</h4></summary>
226
197
 
227
198
  ```json
228
199
  {
@@ -236,12 +207,12 @@ Add to `~/.config/opencode/opencode.json`:
236
207
  }
237
208
  ```
238
209
 
210
+ [![Docs](https://img.shields.io/badge/Warp_MCP_Docs-black?style=flat&logo=warp&logoColor=white)](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server)
211
+
239
212
  </details>
240
213
 
241
214
  <details>
242
- <summary><strong>Kiro</strong></summary>
243
-
244
- [![Docs](https://img.shields.io/badge/Kiro_MCP_Docs-black?style=flat)](https://kiro.dev/docs/mcp/configuration/)
215
+ <summary><h4>Kiro</h4></summary>
245
216
 
246
217
  ```json
247
218
  {
@@ -254,12 +225,12 @@ Add to `~/.config/opencode/opencode.json`:
254
225
  }
255
226
  ```
256
227
 
228
+ [![Docs](https://img.shields.io/badge/Kiro_MCP_Docs-black?style=flat)](https://kiro.dev/docs/mcp/configuration/)
229
+
257
230
  </details>
258
231
 
259
232
  <details>
260
- <summary><strong>Roo Code</strong></summary>
261
-
262
- [![Docs](https://img.shields.io/badge/Roo_Code_MCP_Docs-black?style=flat)](https://docs.roocode.com/features/mcp/using-mcp-in-roo)
233
+ <summary><h4>Roo Code</h4></summary>
263
234
 
264
235
  ```json
265
236
  {
@@ -272,12 +243,12 @@ Add to `~/.config/opencode/opencode.json`:
272
243
  }
273
244
  ```
274
245
 
246
+ [![Docs](https://img.shields.io/badge/Roo_Code_MCP_Docs-black?style=flat)](https://docs.roocode.com/features/mcp/using-mcp-in-roo)
247
+
275
248
  </details>
276
249
 
277
250
  <details>
278
- <summary><strong>Cline</strong></summary>
279
-
280
- [![Docs](https://img.shields.io/badge/Cline_MCP_Marketplace-black?style=flat)](https://cline.bot/mcp-marketplace)
251
+ <summary><h4>Cline</h4></summary>
281
252
 
282
253
  ```json
283
254
  {
@@ -290,12 +261,12 @@ Add to `~/.config/opencode/opencode.json`:
290
261
  }
291
262
  ```
292
263
 
264
+ [![Docs](https://img.shields.io/badge/Cline_MCP_Marketplace-black?style=flat)](https://cline.bot/mcp-marketplace)
265
+
293
266
  </details>
294
267
 
295
268
  <details>
296
- <summary><strong>Trae</strong></summary>
297
-
298
- [![Docs](https://img.shields.io/badge/Trae_MCP_Docs-black?style=flat)](https://docs.trae.ai/ide/model-context-protocol?_lang=en)
269
+ <summary><h4>Trae</h4></summary>
299
270
 
300
271
  ```json
301
272
  {
@@ -308,12 +279,12 @@ Add to `~/.config/opencode/opencode.json`:
308
279
  }
309
280
  ```
310
281
 
282
+ [![Docs](https://img.shields.io/badge/Trae_MCP_Docs-black?style=flat)](https://docs.trae.ai/ide/model-context-protocol?_lang=en)
283
+
311
284
  </details>
312
285
 
313
286
  <details>
314
- <summary><strong>Augment Code</strong></summary>
315
-
316
- [![Docs](https://img.shields.io/badge/Augment_Code_Docs-black?style=flat)](https://docs.augmentcode.com/)
287
+ <summary><h4>Augment Code</h4></summary>
317
288
 
318
289
  Hamburger menu → Settings → Tools → `+ Add MCP` → Command: `npx -y @crush-protocol/mcp-client`
319
290
 
@@ -329,12 +300,12 @@ Hamburger menu → Settings → Tools → `+ Add MCP` → Command: `npx -y @crus
329
300
  }
330
301
  ```
331
302
 
303
+ [![Docs](https://img.shields.io/badge/Augment_Code_Docs-black?style=flat)](https://docs.augmentcode.com/)
304
+
332
305
  </details>
333
306
 
334
307
  <details>
335
- <summary><strong>Copilot Coding Agent</strong></summary>
336
-
337
- [![Docs](https://img.shields.io/badge/Copilot_MCP_Docs-black?style=flat&logo=github&logoColor=white)](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp)
308
+ <summary><h4>Copilot Coding Agent</h4></summary>
338
309
 
339
310
  ```json
340
311
  {
@@ -348,12 +319,12 @@ Hamburger menu → Settings → Tools → `+ Add MCP` → Command: `npx -y @crus
348
319
  }
349
320
  ```
350
321
 
322
+ [![Docs](https://img.shields.io/badge/Copilot_MCP_Docs-black?style=flat&logo=github&logoColor=white)](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp)
323
+
351
324
  </details>
352
325
 
353
326
  <details>
354
- <summary><strong>Copilot CLI</strong></summary>
355
-
356
- [![Docs](https://img.shields.io/badge/Copilot_CLI_Docs-black?style=flat&logo=github&logoColor=white)](https://docs.github.com/copilot)
327
+ <summary><h4>Copilot CLI</h4></summary>
357
328
 
358
329
  Add to `~/.copilot/mcp-config.json`:
359
330
 
@@ -369,12 +340,12 @@ Add to `~/.copilot/mcp-config.json`:
369
340
  }
370
341
  ```
371
342
 
343
+ [![Docs](https://img.shields.io/badge/Copilot_CLI_Docs-black?style=flat&logo=github&logoColor=white)](https://docs.github.com/copilot)
344
+
372
345
  </details>
373
346
 
374
347
  <details>
375
- <summary><strong>Amazon Q Developer CLI</strong></summary>
376
-
377
- [![Docs](https://img.shields.io/badge/Amazon_Q_CLI_Docs-black?style=flat&logo=amazonaws&logoColor=white)](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-mcp-configuration.html)
348
+ <summary><h4>Amazon Q Developer CLI</h4></summary>
378
349
 
379
350
  ```json
380
351
  {
@@ -387,23 +358,23 @@ Add to `~/.copilot/mcp-config.json`:
387
358
  }
388
359
  ```
389
360
 
361
+ [![Docs](https://img.shields.io/badge/Amazon_Q_CLI_Docs-black?style=flat&logo=amazonaws&logoColor=white)](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-mcp-configuration.html)
362
+
390
363
  </details>
391
364
 
392
365
  <details>
393
- <summary><strong>Amp</strong></summary>
394
-
395
- [![Docs](https://img.shields.io/badge/Amp_MCP_Docs-black?style=flat)](https://ampcode.com/manual#mcp)
366
+ <summary><h4>Amp</h4></summary>
396
367
 
397
368
  ```sh
398
369
  amp mcp add crush-protocol -- npx -y @crush-protocol/mcp-client
399
370
  ```
400
371
 
372
+ [![Docs](https://img.shields.io/badge/Amp_MCP_Docs-black?style=flat)](https://ampcode.com/manual#mcp)
373
+
401
374
  </details>
402
375
 
403
376
  <details>
404
- <summary><strong>Zed</strong></summary>
405
-
406
- [![Docs](https://img.shields.io/badge/Zed_Context_Server_Docs-black?style=flat)](https://zed.dev/docs/assistant/context-servers)
377
+ <summary><h4>Zed</h4></summary>
407
378
 
408
379
  Add to `settings.json`:
409
380
 
@@ -419,12 +390,12 @@ Add to `settings.json`:
419
390
  }
420
391
  ```
421
392
 
393
+ [![Docs](https://img.shields.io/badge/Zed_Context_Server_Docs-black?style=flat)](https://zed.dev/docs/assistant/context-servers)
394
+
422
395
  </details>
423
396
 
424
397
  <details>
425
- <summary><strong>JetBrains AI Assistant</strong></summary>
426
-
427
- [![Docs](https://img.shields.io/badge/JetBrains_AI_Docs-black?style=flat&logo=jetbrains&logoColor=white)](https://www.jetbrains.com/help/ai-assistant/configure-an-mcp-server.html)
398
+ <summary><h4>JetBrains AI Assistant</h4></summary>
428
399
 
429
400
  Settings → Tools → AI Assistant → Model Context Protocol (MCP) → `+ Add`
430
401
 
@@ -439,12 +410,12 @@ Settings → Tools → AI Assistant → Model Context Protocol (MCP) → `+ Add`
439
410
  }
440
411
  ```
441
412
 
413
+ [![Docs](https://img.shields.io/badge/JetBrains_AI_Docs-black?style=flat&logo=jetbrains&logoColor=white)](https://www.jetbrains.com/help/ai-assistant/configure-an-mcp-server.html)
414
+
442
415
  </details>
443
416
 
444
417
  <details>
445
- <summary><strong>Qwen Code</strong></summary>
446
-
447
- [![Docs](https://img.shields.io/badge/Qwen_Code_MCP_Docs-black?style=flat)](https://qwenlm.github.io/qwen-code-docs/en/users/features/mcp/)
418
+ <summary><h4>Qwen Code</h4></summary>
448
419
 
449
420
  **CLI:** `qwen mcp add crush-protocol npx -y @crush-protocol/mcp-client`
450
421
 
@@ -459,12 +430,12 @@ Settings → Tools → AI Assistant → Model Context Protocol (MCP) → `+ Add`
459
430
  }
460
431
  ```
461
432
 
433
+ [![Docs](https://img.shields.io/badge/Qwen_Code_MCP_Docs-black?style=flat)](https://qwenlm.github.io/qwen-code-docs/en/users/features/mcp/)
434
+
462
435
  </details>
463
436
 
464
437
  <details>
465
- <summary><strong>LM Studio</strong></summary>
466
-
467
- [![Docs](https://img.shields.io/badge/LM_Studio_MCP_Docs-black?style=flat)](https://lmstudio.ai/blog/lmstudio-v0.3.17)
438
+ <summary><h4>LM Studio</h4></summary>
468
439
 
469
440
  Program → Install → Edit `mcp.json`:
470
441
 
@@ -479,12 +450,12 @@ Program → Install → Edit `mcp.json`:
479
450
  }
480
451
  ```
481
452
 
453
+ [![Docs](https://img.shields.io/badge/LM_Studio_MCP_Docs-black?style=flat)](https://lmstudio.ai/blog/lmstudio-v0.3.17)
454
+
482
455
  </details>
483
456
 
484
457
  <details>
485
- <summary><strong>Visual Studio 2022</strong></summary>
486
-
487
- [![Docs](https://img.shields.io/badge/VS_2022_MCP_Docs-black?style=flat&logo=visualstudio&logoColor=white)](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022)
458
+ <summary><h4>Visual Studio 2022</h4></summary>
488
459
 
489
460
  ```json
490
461
  {
@@ -500,12 +471,12 @@ Program → Install → Edit `mcp.json`:
500
471
  }
501
472
  ```
502
473
 
474
+ [![Docs](https://img.shields.io/badge/VS_2022_MCP_Docs-black?style=flat&logo=visualstudio&logoColor=white)](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022)
475
+
503
476
  </details>
504
477
 
505
478
  <details>
506
- <summary><strong>BoltAI</strong></summary>
507
-
508
- [![Docs](https://img.shields.io/badge/BoltAI_Docs-black?style=flat)](https://docs.boltai.com/docs/plugins/mcp-servers)
479
+ <summary><h4>BoltAI</h4></summary>
509
480
 
510
481
  ```json
511
482
  {
@@ -518,12 +489,12 @@ Program → Install → Edit `mcp.json`:
518
489
  }
519
490
  ```
520
491
 
492
+ [![Docs](https://img.shields.io/badge/BoltAI_Docs-black?style=flat)](https://docs.boltai.com/docs/plugins/mcp-servers)
493
+
521
494
  </details>
522
495
 
523
496
  <details>
524
- <summary><strong>Perplexity Desktop</strong></summary>
525
-
526
- [![Docs](https://img.shields.io/badge/Perplexity_MCP_Docs-black?style=flat)](https://www.perplexity.ai/help-center/en/articles/11502712-local-and-remote-mcps-for-perplexity)
497
+ <summary><h4>Perplexity Desktop</h4></summary>
527
498
 
528
499
  Perplexity → Settings → Connectors → Add Connector → Advanced → Server Name: `crush-protocol`
529
500
 
@@ -535,12 +506,12 @@ Perplexity → Settings → Connectors → Add Connector → Advanced → Server
535
506
  }
536
507
  ```
537
508
 
509
+ [![Docs](https://img.shields.io/badge/Perplexity_MCP_Docs-black?style=flat)](https://www.perplexity.ai/help-center/en/articles/11502712-local-and-remote-mcps-for-perplexity)
510
+
538
511
  </details>
539
512
 
540
513
  <details>
541
- <summary><strong>Kilo Code</strong></summary>
542
-
543
- [![Docs](https://img.shields.io/badge/Kilo_Code_Docs-black?style=flat)](https://kilocode.ai)
514
+ <summary><h4>Kilo Code</h4></summary>
544
515
 
545
516
  ```json
546
517
  {
@@ -553,12 +524,12 @@ Perplexity → Settings → Connectors → Add Connector → Advanced → Server
553
524
  }
554
525
  ```
555
526
 
527
+ [![Docs](https://img.shields.io/badge/Kilo_Code_Docs-black?style=flat)](https://kilocode.ai)
528
+
556
529
  </details>
557
530
 
558
531
  <details>
559
- <summary><strong>Zencoder</strong></summary>
560
-
561
- [![Docs](https://img.shields.io/badge/Zencoder_Docs-black?style=flat)](https://zencoder.ai)
532
+ <summary><h4>Zencoder</h4></summary>
562
533
 
563
534
  Zencoder menu → Agent tools → Add custom MCP:
564
535
 
@@ -569,12 +540,12 @@ Zencoder menu → Agent tools → Add custom MCP:
569
540
  }
570
541
  ```
571
542
 
543
+ [![Docs](https://img.shields.io/badge/Zencoder_Docs-black?style=flat)](https://zencoder.ai)
544
+
572
545
  </details>
573
546
 
574
547
  <details>
575
- <summary><strong>Qodo Gen</strong></summary>
576
-
577
- [![Docs](https://img.shields.io/badge/Qodo_Gen_Docs-black?style=flat)](https://docs.qodo.ai/qodo-documentation/qodo-gen/qodo-gen-chat/agentic-mode/agentic-tools-mcps)
548
+ <summary><h4>Qodo Gen</h4></summary>
578
549
 
579
550
  Qodo Gen chat → Connect more tools → `+ Add new MCP`
580
551
 
@@ -589,10 +560,12 @@ Qodo Gen chat → Connect more tools → `+ Add new MCP`
589
560
  }
590
561
  ```
591
562
 
563
+ [![Docs](https://img.shields.io/badge/Qodo_Gen_Docs-black?style=flat)](https://docs.qodo.ai/qodo-documentation/qodo-gen/qodo-gen-chat/agentic-mode/agentic-tools-mcps)
564
+
592
565
  </details>
593
566
 
594
567
  <details>
595
- <summary><strong>Using Bun or Deno</strong></summary>
568
+ <summary><h4>Using Bun or Deno</h4></summary>
596
569
 
597
570
  **Bun:**
598
571
 
@@ -630,7 +603,7 @@ Qodo Gen chat → Connect more tools → `+ Add new MCP`
630
603
  </details>
631
604
 
632
605
  <details>
633
- <summary><strong>Windows</strong></summary>
606
+ <summary><h4>Windows</h4></summary>
634
607
 
635
608
  ```json
636
609
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crush-protocol/mcp-client",
3
- "version": "0.4.10",
3
+ "version": "0.4.11",
4
4
  "description": "Official Crush MCP client for hosted market data, backtests, and trading workflows",
5
5
  "type": "module",
6
6
  "license": "MIT",