@drunkcoding/auto-claude 0.0.2
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/LICENSE +21 -0
- package/README.md +72 -0
- package/catalog.json +1253 -0
- package/dist/cli.js +2988 -0
- package/package.json +47 -0
package/catalog.json
ADDED
|
@@ -0,0 +1,1253 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"updatedAt": "2026-05-06",
|
|
4
|
+
"groups": [
|
|
5
|
+
{
|
|
6
|
+
"id": "memory",
|
|
7
|
+
"name": "Memory backend",
|
|
8
|
+
"description": "Persistent cross-session memory. Pick one — running two memory backends doubles writes and recall.",
|
|
9
|
+
"kind": "pick-one",
|
|
10
|
+
"items": [
|
|
11
|
+
{
|
|
12
|
+
"id": "claude-mem",
|
|
13
|
+
"name": "claude-mem",
|
|
14
|
+
"description": "Persistent cross-session memory for Claude Code",
|
|
15
|
+
"kind": "plugin",
|
|
16
|
+
"homepage": "https://github.com/thedotmack/claude-mem",
|
|
17
|
+
"defaultScope": "global",
|
|
18
|
+
"detect": {
|
|
19
|
+
"command": "claude plugin list",
|
|
20
|
+
"versionMatch": "claude-mem"
|
|
21
|
+
},
|
|
22
|
+
"install": {
|
|
23
|
+
"command": "npx claude-mem install"
|
|
24
|
+
},
|
|
25
|
+
"uninstall": {
|
|
26
|
+
"command": "npx claude-mem uninstall"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "cavemem",
|
|
31
|
+
"name": "cavemem",
|
|
32
|
+
"default": true,
|
|
33
|
+
"description": "Cross-agent persistent memory via compressed local SQLite + MCP",
|
|
34
|
+
"kind": "plugin",
|
|
35
|
+
"homepage": "https://github.com/JuliusBrussee/cavemem",
|
|
36
|
+
"defaultScope": "global",
|
|
37
|
+
"detect": {
|
|
38
|
+
"kind": "npm",
|
|
39
|
+
"package": "cavemem"
|
|
40
|
+
},
|
|
41
|
+
"install": {
|
|
42
|
+
"command": "npm install -g cavemem && cavemem install"
|
|
43
|
+
},
|
|
44
|
+
"uninstall": {
|
|
45
|
+
"command": "cavemem uninstall && npm uninstall -g cavemem"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "mempalace",
|
|
50
|
+
"name": "MemPalace",
|
|
51
|
+
"description": "Persistent memory for Claude Code via pip + MCP server",
|
|
52
|
+
"kind": "tool",
|
|
53
|
+
"homepage": "https://github.com/MemPalace/mempalace",
|
|
54
|
+
"defaultScope": "global",
|
|
55
|
+
"detect": {
|
|
56
|
+
"command": "mempalace --version"
|
|
57
|
+
},
|
|
58
|
+
"install": {
|
|
59
|
+
"command": "pip install mempalace"
|
|
60
|
+
},
|
|
61
|
+
"uninstall": {
|
|
62
|
+
"command": "pip uninstall -y mempalace"
|
|
63
|
+
},
|
|
64
|
+
"update": {
|
|
65
|
+
"command": "pip install --upgrade mempalace"
|
|
66
|
+
},
|
|
67
|
+
"postInstall": [
|
|
68
|
+
{
|
|
69
|
+
"type": "shell",
|
|
70
|
+
"value": "claude mcp add mempalace -- mempalace mcp",
|
|
71
|
+
"label": "Registering MemPalace MCP server"
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "spec",
|
|
79
|
+
"name": "Spec-driven workflow",
|
|
80
|
+
"description": "Spec → plan → implement slash-commands. Pick one workflow.",
|
|
81
|
+
"kind": "pick-one",
|
|
82
|
+
"items": [
|
|
83
|
+
{
|
|
84
|
+
"id": "spec-kit",
|
|
85
|
+
"name": "spec-kit",
|
|
86
|
+
"description": "GitHub's Spec-Driven Development toolkit — /speckit.* slash commands for spec → plan → tasks → implement",
|
|
87
|
+
"kind": "plugin",
|
|
88
|
+
"homepage": "https://github.com/github/spec-kit",
|
|
89
|
+
"defaultScope": "project",
|
|
90
|
+
"detect": {
|
|
91
|
+
"command": "specify --version"
|
|
92
|
+
},
|
|
93
|
+
"install": {
|
|
94
|
+
"command": "sh -c 'if ! command -v uv >/dev/null 2>&1; then echo \"Error: uv is required for spec-kit. Install it first with: brew install uv (macOS) — or see https://docs.astral.sh/uv/getting-started/installation/ for other platforms.\" 1>&2; exit 1; fi; uv tool install specify-cli --from git+https://github.com/github/spec-kit.git'"
|
|
95
|
+
},
|
|
96
|
+
"uninstall": {
|
|
97
|
+
"command": "uv tool uninstall specify-cli"
|
|
98
|
+
},
|
|
99
|
+
"update": {
|
|
100
|
+
"command": "uv tool install specify-cli --force --from git+https://github.com/github/spec-kit.git"
|
|
101
|
+
},
|
|
102
|
+
"postInstall": [
|
|
103
|
+
{
|
|
104
|
+
"type": "shell",
|
|
105
|
+
"value": "specify init . --integration claude --force",
|
|
106
|
+
"requiresRepo": true,
|
|
107
|
+
"label": "Initializing spec-kit in repo (Claude integration)"
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "open-spec",
|
|
113
|
+
"name": "OpenSpec",
|
|
114
|
+
"description": "Spec-driven development framework — /opsx:* slash commands for proposal → apply → archive",
|
|
115
|
+
"kind": "plugin",
|
|
116
|
+
"homepage": "https://github.com/Fission-AI/OpenSpec",
|
|
117
|
+
"defaultScope": "project",
|
|
118
|
+
"detect": {
|
|
119
|
+
"kind": "npm",
|
|
120
|
+
"package": "@fission-ai/openspec"
|
|
121
|
+
},
|
|
122
|
+
"install": {
|
|
123
|
+
"command": "npm install -g @fission-ai/openspec@latest"
|
|
124
|
+
},
|
|
125
|
+
"uninstall": {
|
|
126
|
+
"command": "npm uninstall -g @fission-ai/openspec"
|
|
127
|
+
},
|
|
128
|
+
"update": {
|
|
129
|
+
"command": "npm install -g @fission-ai/openspec@latest"
|
|
130
|
+
},
|
|
131
|
+
"postInstall": [
|
|
132
|
+
{
|
|
133
|
+
"type": "shell",
|
|
134
|
+
"value": "openspec init",
|
|
135
|
+
"requiresRepo": true,
|
|
136
|
+
"label": "Initializing OpenSpec in repo"
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "code-intelligence",
|
|
144
|
+
"name": "Code intelligence / KG",
|
|
145
|
+
"description": "Knowledge-graph engine over your codebase. Pick one — they overlap.",
|
|
146
|
+
"kind": "pick-one",
|
|
147
|
+
"items": [
|
|
148
|
+
{
|
|
149
|
+
"id": "gitnexus",
|
|
150
|
+
"name": "gitnexus",
|
|
151
|
+
"description": "Code intelligence engine — indexes your repo into a knowledge graph and exposes it via MCP",
|
|
152
|
+
"kind": "tool",
|
|
153
|
+
"homepage": "https://github.com/abhigyanpatwari/GitNexus",
|
|
154
|
+
"defaultScope": "project",
|
|
155
|
+
"default": true,
|
|
156
|
+
"detect": {
|
|
157
|
+
"kind": "npm",
|
|
158
|
+
"package": "gitnexus"
|
|
159
|
+
},
|
|
160
|
+
"install": {
|
|
161
|
+
"command": "npm install -g gitnexus"
|
|
162
|
+
},
|
|
163
|
+
"uninstall": {
|
|
164
|
+
"command": "npm uninstall -g gitnexus"
|
|
165
|
+
},
|
|
166
|
+
"update": {
|
|
167
|
+
"command": "npm install -g gitnexus@latest"
|
|
168
|
+
},
|
|
169
|
+
"postInstall": [
|
|
170
|
+
{
|
|
171
|
+
"type": "shell",
|
|
172
|
+
"value": "claude mcp add gitnexus -- npx -y gitnexus@latest mcp",
|
|
173
|
+
"label": "Registering gitnexus MCP server"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"type": "shell",
|
|
177
|
+
"value": "npx gitnexus analyze",
|
|
178
|
+
"requiresRepo": true,
|
|
179
|
+
"label": "Indexing repo into knowledge graph"
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "graphify",
|
|
185
|
+
"name": "graphify",
|
|
186
|
+
"description": "Knowledge-graph builder for your codebase, surfaced via the /graphify slash command",
|
|
187
|
+
"kind": "tool",
|
|
188
|
+
"homepage": "https://github.com/safishamsi/graphify",
|
|
189
|
+
"defaultScope": "global",
|
|
190
|
+
"detect": {
|
|
191
|
+
"command": "graphify --version"
|
|
192
|
+
},
|
|
193
|
+
"install": {
|
|
194
|
+
"command": "pip install graphifyy && graphify install"
|
|
195
|
+
},
|
|
196
|
+
"postInstall": [
|
|
197
|
+
{
|
|
198
|
+
"type": "shell",
|
|
199
|
+
"value": "graphify hook install",
|
|
200
|
+
"requiresRepo": true,
|
|
201
|
+
"label": "Installing graphify git hook"
|
|
202
|
+
}
|
|
203
|
+
]
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "docs",
|
|
209
|
+
"name": "Documentation providers",
|
|
210
|
+
"description": "Documentation lookup MCPs. Independent — install any combination.",
|
|
211
|
+
"kind": "pick-many",
|
|
212
|
+
"items": [
|
|
213
|
+
{
|
|
214
|
+
"id": "context7",
|
|
215
|
+
"name": "context7",
|
|
216
|
+
"description": "Upstash Context7 — version-specific library docs and examples pulled into LLM context",
|
|
217
|
+
"kind": "plugin",
|
|
218
|
+
"defaultScope": "global",
|
|
219
|
+
"default": false,
|
|
220
|
+
"detect": {
|
|
221
|
+
"command": "claude plugin list",
|
|
222
|
+
"versionMatch": "context7"
|
|
223
|
+
},
|
|
224
|
+
"install": {
|
|
225
|
+
"command": "claude plugin install context7@claude-plugins-official"
|
|
226
|
+
},
|
|
227
|
+
"uninstall": {
|
|
228
|
+
"command": "claude plugin uninstall context7"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "microsoft-docs",
|
|
233
|
+
"name": "microsoft-docs",
|
|
234
|
+
"description": "Official Microsoft / Azure / .NET documentation, API references, and code samples",
|
|
235
|
+
"kind": "plugin",
|
|
236
|
+
"defaultScope": "global",
|
|
237
|
+
"default": false,
|
|
238
|
+
"detect": {
|
|
239
|
+
"command": "claude plugin list",
|
|
240
|
+
"versionMatch": "microsoft-docs"
|
|
241
|
+
},
|
|
242
|
+
"install": {
|
|
243
|
+
"command": "claude plugin install microsoft-docs@claude-plugins-official"
|
|
244
|
+
},
|
|
245
|
+
"uninstall": {
|
|
246
|
+
"command": "claude plugin uninstall microsoft-docs"
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "context-optimization",
|
|
253
|
+
"name": "Context & token optimization",
|
|
254
|
+
"kind": "pick-many",
|
|
255
|
+
"items": [
|
|
256
|
+
{
|
|
257
|
+
"id": "rtk",
|
|
258
|
+
"name": "rtk",
|
|
259
|
+
"description": "Rust Token Killer — token-optimized CLI proxy",
|
|
260
|
+
"kind": "tool",
|
|
261
|
+
"homepage": "https://github.com/rtk-ai/rtk",
|
|
262
|
+
"defaultScope": "global",
|
|
263
|
+
"default": true,
|
|
264
|
+
"detect": {
|
|
265
|
+
"command": "rtk --version"
|
|
266
|
+
},
|
|
267
|
+
"install": {
|
|
268
|
+
"command": "brew install rtk"
|
|
269
|
+
},
|
|
270
|
+
"uninstall": {
|
|
271
|
+
"command": "brew uninstall rtk"
|
|
272
|
+
},
|
|
273
|
+
"update": {
|
|
274
|
+
"command": "brew upgrade rtk"
|
|
275
|
+
},
|
|
276
|
+
"postInstall": [
|
|
277
|
+
{
|
|
278
|
+
"type": "shell",
|
|
279
|
+
"value": "rtk init -g",
|
|
280
|
+
"requiresRepo": true,
|
|
281
|
+
"label": "Initializing rtk in repo"
|
|
282
|
+
}
|
|
283
|
+
]
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"id": "context-mode",
|
|
287
|
+
"name": "context-mode",
|
|
288
|
+
"default": true,
|
|
289
|
+
"description": "MCP server that sandboxes tool output and indexes session events — ~98% context reduction",
|
|
290
|
+
"kind": "tool",
|
|
291
|
+
"homepage": "https://github.com/mksglu/context-mode",
|
|
292
|
+
"defaultScope": "global",
|
|
293
|
+
"detect": {
|
|
294
|
+
"kind": "npm",
|
|
295
|
+
"package": "context-mode"
|
|
296
|
+
},
|
|
297
|
+
"install": {
|
|
298
|
+
"command": "npm install -g context-mode"
|
|
299
|
+
},
|
|
300
|
+
"uninstall": {
|
|
301
|
+
"command": "npm uninstall -g context-mode"
|
|
302
|
+
},
|
|
303
|
+
"update": {
|
|
304
|
+
"command": "npm install -g context-mode@latest"
|
|
305
|
+
},
|
|
306
|
+
"postInstall": [
|
|
307
|
+
{
|
|
308
|
+
"type": "shell",
|
|
309
|
+
"value": "claude mcp add context-mode -- npx -y context-mode",
|
|
310
|
+
"label": "Registering context-mode MCP server"
|
|
311
|
+
}
|
|
312
|
+
]
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"id": "codeburn",
|
|
316
|
+
"name": "codeburn",
|
|
317
|
+
"description": "TUI dashboard for AI coding token usage and cost across 18 providers",
|
|
318
|
+
"kind": "tool",
|
|
319
|
+
"homepage": "https://github.com/getagentseal/codeburn",
|
|
320
|
+
"defaultScope": "global",
|
|
321
|
+
"detect": {
|
|
322
|
+
"kind": "npm",
|
|
323
|
+
"package": "codeburn"
|
|
324
|
+
},
|
|
325
|
+
"install": {
|
|
326
|
+
"command": "npm install -g codeburn"
|
|
327
|
+
},
|
|
328
|
+
"uninstall": {
|
|
329
|
+
"command": "npm uninstall -g codeburn"
|
|
330
|
+
},
|
|
331
|
+
"update": {
|
|
332
|
+
"command": "npm install -g codeburn@latest"
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
]
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"id": "core-plugins",
|
|
339
|
+
"name": "Core plugins & skill packs",
|
|
340
|
+
"kind": "pick-many",
|
|
341
|
+
"items": [
|
|
342
|
+
{
|
|
343
|
+
"id": "superpowers",
|
|
344
|
+
"name": "superpowers",
|
|
345
|
+
"description": "Claude Code plugin: skills framework",
|
|
346
|
+
"kind": "plugin",
|
|
347
|
+
"defaultScope": "global",
|
|
348
|
+
"default": true,
|
|
349
|
+
"detect": {
|
|
350
|
+
"command": "claude plugin list",
|
|
351
|
+
"versionMatch": "superpowers"
|
|
352
|
+
},
|
|
353
|
+
"install": {
|
|
354
|
+
"command": "claude plugin install superpowers@claude-plugins-official"
|
|
355
|
+
},
|
|
356
|
+
"uninstall": {
|
|
357
|
+
"command": "claude plugin uninstall superpowers"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"id": "claude-code-setup",
|
|
362
|
+
"name": "claude-code-setup",
|
|
363
|
+
"description": "Claude Code plugin: automation recommender",
|
|
364
|
+
"kind": "plugin",
|
|
365
|
+
"defaultScope": "global",
|
|
366
|
+
"default": true,
|
|
367
|
+
"detect": {
|
|
368
|
+
"command": "claude plugin list",
|
|
369
|
+
"versionMatch": "claude-code-setup"
|
|
370
|
+
},
|
|
371
|
+
"install": {
|
|
372
|
+
"command": "claude plugin install claude-code-setup@claude-plugins-official"
|
|
373
|
+
},
|
|
374
|
+
"uninstall": {
|
|
375
|
+
"command": "claude plugin uninstall claude-code-setup"
|
|
376
|
+
},
|
|
377
|
+
"postInstall": [
|
|
378
|
+
{
|
|
379
|
+
"type": "claude-prompt",
|
|
380
|
+
"label": "Trigger automation recommender",
|
|
381
|
+
"value": "Ask Claude in this repo: \"recommend automations for this project\""
|
|
382
|
+
}
|
|
383
|
+
]
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"id": "plugin-dev",
|
|
387
|
+
"name": "plugin-dev",
|
|
388
|
+
"description": "Toolkit for developing Claude Code plugins (hooks, MCP, commands, agents, best practices)",
|
|
389
|
+
"kind": "plugin",
|
|
390
|
+
"defaultScope": "global",
|
|
391
|
+
"detect": {
|
|
392
|
+
"command": "claude plugin list",
|
|
393
|
+
"versionMatch": "plugin-dev"
|
|
394
|
+
},
|
|
395
|
+
"install": {
|
|
396
|
+
"command": "claude plugin install plugin-dev@claude-plugins-official"
|
|
397
|
+
},
|
|
398
|
+
"uninstall": {
|
|
399
|
+
"command": "claude plugin uninstall plugin-dev"
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"id": "caveman",
|
|
404
|
+
"name": "caveman",
|
|
405
|
+
"default": true,
|
|
406
|
+
"description": "Claude plugin that compresses responses to reduce output token usage",
|
|
407
|
+
"kind": "plugin",
|
|
408
|
+
"homepage": "https://github.com/JuliusBrussee/caveman",
|
|
409
|
+
"defaultScope": "global",
|
|
410
|
+
"detect": {
|
|
411
|
+
"command": "claude plugin list",
|
|
412
|
+
"versionMatch": "caveman"
|
|
413
|
+
},
|
|
414
|
+
"install": {
|
|
415
|
+
"command": "claude plugin marketplace add JuliusBrussee/caveman && claude plugin install caveman@caveman"
|
|
416
|
+
},
|
|
417
|
+
"uninstall": {
|
|
418
|
+
"command": "claude plugin uninstall caveman"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"id": "microsoft-skills",
|
|
423
|
+
"name": "microsoft/skills",
|
|
424
|
+
"description": "Microsoft skill marketplace — deep-wiki, Azure SDK skills, and AI Foundry plugins for general-purpose Azure development",
|
|
425
|
+
"kind": "plugin",
|
|
426
|
+
"homepage": "https://github.com/microsoft/skills",
|
|
427
|
+
"defaultScope": "global",
|
|
428
|
+
"default": false,
|
|
429
|
+
"detect": {
|
|
430
|
+
"command": "claude plugin list",
|
|
431
|
+
"versionMatch": "skills"
|
|
432
|
+
},
|
|
433
|
+
"install": {
|
|
434
|
+
"command": "claude plugin marketplace add microsoft/skills && claude plugin install deep-wiki@skills"
|
|
435
|
+
},
|
|
436
|
+
"uninstall": {
|
|
437
|
+
"command": "claude plugin uninstall deep-wiki"
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"id": "azure-skills",
|
|
442
|
+
"name": "microsoft/azure-skills",
|
|
443
|
+
"description": "Microsoft Azure skill marketplace — cloud resource management, deployments, and Azure services via MCP",
|
|
444
|
+
"kind": "plugin",
|
|
445
|
+
"homepage": "https://github.com/microsoft/azure-skills",
|
|
446
|
+
"defaultScope": "global",
|
|
447
|
+
"default": false,
|
|
448
|
+
"detect": {
|
|
449
|
+
"command": "claude plugin list",
|
|
450
|
+
"versionMatch": "azure-skills"
|
|
451
|
+
},
|
|
452
|
+
"install": {
|
|
453
|
+
"command": "claude plugin marketplace add microsoft/azure-skills && claude plugin install azure@azure-skills"
|
|
454
|
+
},
|
|
455
|
+
"uninstall": {
|
|
456
|
+
"command": "claude plugin uninstall azure"
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
]
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"id": "visual",
|
|
463
|
+
"name": "Visual tooling",
|
|
464
|
+
"kind": "pick-many",
|
|
465
|
+
"items": [
|
|
466
|
+
{
|
|
467
|
+
"id": "snip",
|
|
468
|
+
"name": "Snip",
|
|
469
|
+
"description": "Visual mode for Claude Code — render diagrams, annotate previews, OCR screenshots (macOS via Homebrew cask)",
|
|
470
|
+
"kind": "tool",
|
|
471
|
+
"homepage": "https://github.com/rixinhahaha/snip",
|
|
472
|
+
"defaultScope": "global",
|
|
473
|
+
"default": true,
|
|
474
|
+
"detect": {
|
|
475
|
+
"command": "snip --help"
|
|
476
|
+
},
|
|
477
|
+
"install": {
|
|
478
|
+
"command": "brew install --cask rixinhahaha/snip/snip"
|
|
479
|
+
},
|
|
480
|
+
"uninstall": {
|
|
481
|
+
"command": "brew uninstall --cask snip"
|
|
482
|
+
},
|
|
483
|
+
"update": {
|
|
484
|
+
"command": "brew upgrade --cask snip"
|
|
485
|
+
},
|
|
486
|
+
"postInstall": [
|
|
487
|
+
{
|
|
488
|
+
"type": "shell",
|
|
489
|
+
"value": "snip setup",
|
|
490
|
+
"label": "Wiring Snip into Claude Code",
|
|
491
|
+
"interactive": true
|
|
492
|
+
}
|
|
493
|
+
]
|
|
494
|
+
}
|
|
495
|
+
]
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"id": "project-templates",
|
|
499
|
+
"name": "Project-specific templates",
|
|
500
|
+
"kind": "pick-many",
|
|
501
|
+
"items": [
|
|
502
|
+
{
|
|
503
|
+
"id": "drunk-app",
|
|
504
|
+
"name": "drunk-app",
|
|
505
|
+
"description": "AI assistant for configuring drunk-app Helm chart deployments (values.yaml, validation)",
|
|
506
|
+
"kind": "plugin",
|
|
507
|
+
"homepage": "https://github.com/baoduy/drunk.charts",
|
|
508
|
+
"defaultScope": "project",
|
|
509
|
+
"detect": {
|
|
510
|
+
"command": "claude plugin list",
|
|
511
|
+
"versionMatch": "drunk-app"
|
|
512
|
+
},
|
|
513
|
+
"install": {
|
|
514
|
+
"command": "claude plugin marketplace add baoduy/drunk.charts && claude plugin install drunk-app@drunk-charts"
|
|
515
|
+
},
|
|
516
|
+
"uninstall": {
|
|
517
|
+
"command": "claude plugin uninstall drunk-app"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"id": "dknet-minimal",
|
|
522
|
+
"name": "dknet-minimal",
|
|
523
|
+
"description": "Slash commands, subagents, and skills for vertical-slice features on DKNet.Minimal.Template (.NET 10, DDD/CQRS, EF Core)",
|
|
524
|
+
"kind": "plugin",
|
|
525
|
+
"homepage": "https://github.com/baoduy/DKNet.Templates",
|
|
526
|
+
"defaultScope": "project",
|
|
527
|
+
"detect": {
|
|
528
|
+
"command": "claude plugin list",
|
|
529
|
+
"versionMatch": "dknet-minimal"
|
|
530
|
+
},
|
|
531
|
+
"install": {
|
|
532
|
+
"command": "claude plugin marketplace add baoduy/DKNet.Templates && claude plugin install dknet-minimal@dknet-marketplace"
|
|
533
|
+
},
|
|
534
|
+
"uninstall": {
|
|
535
|
+
"command": "claude plugin uninstall dknet-minimal"
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
]
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"id": "mcp-servers",
|
|
542
|
+
"name": "MCP servers (project)",
|
|
543
|
+
"description": "Add MCP servers to this project's .mcp.json",
|
|
544
|
+
"kind": "pick-many",
|
|
545
|
+
"items": [
|
|
546
|
+
{
|
|
547
|
+
"id": "context7-mcp",
|
|
548
|
+
"name": "Context7",
|
|
549
|
+
"description": "Up-to-date library docs via Context7 MCP",
|
|
550
|
+
"kind": "mcp",
|
|
551
|
+
"homepage": "https://github.com/upstash/context7",
|
|
552
|
+
"mcpKey": "context7",
|
|
553
|
+
"mcpServer": {
|
|
554
|
+
"command": "npx",
|
|
555
|
+
"args": [
|
|
556
|
+
"-y",
|
|
557
|
+
"@upstash/context7-mcp"
|
|
558
|
+
]
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"id": "microsoft-learn-mcp",
|
|
563
|
+
"name": "Microsoft Learn",
|
|
564
|
+
"description": "Microsoft Learn / Azure docs MCP server",
|
|
565
|
+
"kind": "mcp",
|
|
566
|
+
"homepage": "https://learn.microsoft.com",
|
|
567
|
+
"mcpKey": "microsoft-learn",
|
|
568
|
+
"mcpServer": {
|
|
569
|
+
"command": "npx",
|
|
570
|
+
"args": [
|
|
571
|
+
"-y",
|
|
572
|
+
"@microsoft/mcp-server-learn"
|
|
573
|
+
]
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"id": "agent-orchestration",
|
|
580
|
+
"name": "Agent orchestration & authoring",
|
|
581
|
+
"description": "Multi-agent / loop / authoring meta-tooling",
|
|
582
|
+
"kind": "pick-many",
|
|
583
|
+
"items": [
|
|
584
|
+
{
|
|
585
|
+
"id": "mcp-server-dev",
|
|
586
|
+
"name": "mcp-server-dev",
|
|
587
|
+
"description": "Skills for designing and building MCP servers (remote HTTP, MCPB, local), tool design patterns, auth",
|
|
588
|
+
"kind": "plugin",
|
|
589
|
+
"homepage": "https://github.com/anthropics/claude-plugins-official/tree/main/plugins/mcp-server-dev",
|
|
590
|
+
"defaultScope": "global",
|
|
591
|
+
"detect": {
|
|
592
|
+
"command": "claude plugin list",
|
|
593
|
+
"versionMatch": "mcp-server-dev"
|
|
594
|
+
},
|
|
595
|
+
"install": {
|
|
596
|
+
"command": "claude plugin install mcp-server-dev@claude-plugins-official"
|
|
597
|
+
},
|
|
598
|
+
"uninstall": {
|
|
599
|
+
"command": "claude plugin uninstall mcp-server-dev"
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"id": "ralph-wiggum",
|
|
604
|
+
"name": "ralph-wiggum",
|
|
605
|
+
"description": "Self-referential AI loops — /ralph-loop, /cancel-ralph, plus Stop hook for autonomous overnight iteration",
|
|
606
|
+
"kind": "plugin",
|
|
607
|
+
"homepage": "https://github.com/anthropics/claude-code/tree/main/plugins/ralph-wiggum",
|
|
608
|
+
"defaultScope": "global",
|
|
609
|
+
"detect": {
|
|
610
|
+
"command": "claude plugin list",
|
|
611
|
+
"versionMatch": "ralph-wiggum"
|
|
612
|
+
},
|
|
613
|
+
"install": {
|
|
614
|
+
"command": "claude plugin marketplace add anthropics/claude-code && claude plugin install ralph-wiggum@claude-code-plugins"
|
|
615
|
+
},
|
|
616
|
+
"uninstall": {
|
|
617
|
+
"command": "claude plugin uninstall ralph-wiggum"
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"id": "feature-dev",
|
|
622
|
+
"name": "feature-dev",
|
|
623
|
+
"description": "Multi-agent feature workflow (codebase exploration → architecture design → quality review)",
|
|
624
|
+
"kind": "plugin",
|
|
625
|
+
"homepage": "https://github.com/anthropics/claude-code/tree/main/plugins/feature-dev",
|
|
626
|
+
"defaultScope": "global",
|
|
627
|
+
"detect": {
|
|
628
|
+
"command": "claude plugin list",
|
|
629
|
+
"versionMatch": "feature-dev"
|
|
630
|
+
},
|
|
631
|
+
"install": {
|
|
632
|
+
"command": "claude plugin install feature-dev@claude-plugins-official"
|
|
633
|
+
},
|
|
634
|
+
"uninstall": {
|
|
635
|
+
"command": "claude plugin uninstall feature-dev"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"id": "claude-md-management",
|
|
640
|
+
"name": "claude-md-management",
|
|
641
|
+
"description": "Audits CLAUDE.md quality across many repos and captures session learnings",
|
|
642
|
+
"kind": "plugin",
|
|
643
|
+
"defaultScope": "global",
|
|
644
|
+
"detect": {
|
|
645
|
+
"command": "claude plugin list",
|
|
646
|
+
"versionMatch": "claude-md-management"
|
|
647
|
+
},
|
|
648
|
+
"install": {
|
|
649
|
+
"command": "claude plugin install claude-md-management@claude-plugins-official"
|
|
650
|
+
},
|
|
651
|
+
"uninstall": {
|
|
652
|
+
"command": "claude plugin uninstall claude-md-management"
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
]
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"id": "language-lsp",
|
|
659
|
+
"name": "Language LSPs",
|
|
660
|
+
"description": "Per-language LSP plugins; pick whichever languages you use",
|
|
661
|
+
"kind": "pick-many",
|
|
662
|
+
"items": [
|
|
663
|
+
{
|
|
664
|
+
"id": "csharp-lsp",
|
|
665
|
+
"name": "csharp-lsp",
|
|
666
|
+
"description": "Configures csharp-ls LSP for go-to-def, find-references, real-time diagnostics on .cs files",
|
|
667
|
+
"kind": "plugin",
|
|
668
|
+
"defaultScope": "global",
|
|
669
|
+
"detect": {
|
|
670
|
+
"command": "claude plugin list",
|
|
671
|
+
"versionMatch": "csharp-lsp"
|
|
672
|
+
},
|
|
673
|
+
"install": {
|
|
674
|
+
"command": "claude plugin install csharp-lsp@claude-plugins-official"
|
|
675
|
+
},
|
|
676
|
+
"uninstall": {
|
|
677
|
+
"command": "claude plugin uninstall csharp-lsp"
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"id": "typescript-lsp",
|
|
682
|
+
"name": "typescript-lsp",
|
|
683
|
+
"description": "TypeScript / JavaScript LSP for diagnostics and navigation across .ts/.tsx/.js/.jsx/.mts/.cts",
|
|
684
|
+
"kind": "plugin",
|
|
685
|
+
"defaultScope": "global",
|
|
686
|
+
"detect": {
|
|
687
|
+
"command": "claude plugin list",
|
|
688
|
+
"versionMatch": "typescript-lsp"
|
|
689
|
+
},
|
|
690
|
+
"install": {
|
|
691
|
+
"command": "claude plugin install typescript-lsp@claude-plugins-official"
|
|
692
|
+
},
|
|
693
|
+
"uninstall": {
|
|
694
|
+
"command": "claude plugin uninstall typescript-lsp"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"id": "pyright-lsp",
|
|
699
|
+
"name": "pyright-lsp",
|
|
700
|
+
"description": "Python type-checking LSP for .py / .pyi files",
|
|
701
|
+
"kind": "plugin",
|
|
702
|
+
"defaultScope": "global",
|
|
703
|
+
"detect": {
|
|
704
|
+
"command": "claude plugin list",
|
|
705
|
+
"versionMatch": "pyright-lsp"
|
|
706
|
+
},
|
|
707
|
+
"install": {
|
|
708
|
+
"command": "claude plugin install pyright-lsp@claude-plugins-official"
|
|
709
|
+
},
|
|
710
|
+
"uninstall": {
|
|
711
|
+
"command": "claude plugin uninstall pyright-lsp"
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"id": "rust-lsp",
|
|
716
|
+
"name": "rust-lsp",
|
|
717
|
+
"description": "rust-analyzer LSP plus 16 PostToolUse hooks (clippy, rustfmt, cargo-audit, deny, semver-checks, …)",
|
|
718
|
+
"kind": "plugin",
|
|
719
|
+
"homepage": "https://github.com/zircote/rust-lsp",
|
|
720
|
+
"defaultScope": "global",
|
|
721
|
+
"detect": {
|
|
722
|
+
"command": "claude plugin list",
|
|
723
|
+
"versionMatch": "rust-lsp"
|
|
724
|
+
},
|
|
725
|
+
"install": {
|
|
726
|
+
"command": "claude plugin marketplace add zircote/rust-lsp && claude plugin install rust-lsp@zircote-rust-lsp"
|
|
727
|
+
},
|
|
728
|
+
"uninstall": {
|
|
729
|
+
"command": "claude plugin uninstall rust-lsp"
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
]
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"id": "code-review",
|
|
736
|
+
"name": "Code review",
|
|
737
|
+
"description": "Automated review plugins",
|
|
738
|
+
"kind": "pick-many",
|
|
739
|
+
"items": [
|
|
740
|
+
{
|
|
741
|
+
"id": "code-review",
|
|
742
|
+
"name": "code-review",
|
|
743
|
+
"description": "Multi-agent automated PR review with confidence scoring",
|
|
744
|
+
"kind": "plugin",
|
|
745
|
+
"homepage": "https://github.com/anthropics/claude-code/tree/main/plugins/code-review",
|
|
746
|
+
"defaultScope": "global",
|
|
747
|
+
"detect": {
|
|
748
|
+
"command": "claude plugin list",
|
|
749
|
+
"versionMatch": "code-review"
|
|
750
|
+
},
|
|
751
|
+
"install": {
|
|
752
|
+
"command": "claude plugin install code-review@claude-plugins-official"
|
|
753
|
+
},
|
|
754
|
+
"uninstall": {
|
|
755
|
+
"command": "claude plugin uninstall code-review"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"id": "pr-review-toolkit",
|
|
760
|
+
"name": "pr-review-toolkit",
|
|
761
|
+
"description": "Selectable review aspects via /pr-review-toolkit:review-pr (comment-analyzer, silent-failure-hunter, type-design-analyzer, code-simplifier)",
|
|
762
|
+
"kind": "plugin",
|
|
763
|
+
"homepage": "https://github.com/anthropics/claude-code/tree/main/plugins/pr-review-toolkit",
|
|
764
|
+
"defaultScope": "global",
|
|
765
|
+
"detect": {
|
|
766
|
+
"command": "claude plugin list",
|
|
767
|
+
"versionMatch": "pr-review-toolkit"
|
|
768
|
+
},
|
|
769
|
+
"install": {
|
|
770
|
+
"command": "claude plugin install pr-review-toolkit@claude-plugins-official"
|
|
771
|
+
},
|
|
772
|
+
"uninstall": {
|
|
773
|
+
"command": "claude plugin uninstall pr-review-toolkit"
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
]
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"id": "git-workflow",
|
|
780
|
+
"name": "Git / VCS workflow",
|
|
781
|
+
"description": "Git/VCS plugins",
|
|
782
|
+
"kind": "pick-many",
|
|
783
|
+
"items": [
|
|
784
|
+
{
|
|
785
|
+
"id": "github",
|
|
786
|
+
"name": "github",
|
|
787
|
+
"description": "Official GitHub integration — issues, PRs, code review, repo search",
|
|
788
|
+
"kind": "plugin",
|
|
789
|
+
"defaultScope": "global",
|
|
790
|
+
"detect": {
|
|
791
|
+
"command": "claude plugin list",
|
|
792
|
+
"versionMatch": "github"
|
|
793
|
+
},
|
|
794
|
+
"install": {
|
|
795
|
+
"command": "claude plugin install github@claude-plugins-official"
|
|
796
|
+
},
|
|
797
|
+
"uninstall": {
|
|
798
|
+
"command": "claude plugin uninstall github"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"id": "commit-commands",
|
|
803
|
+
"name": "commit-commands",
|
|
804
|
+
"description": "Git workflow with auto-generated commit messages",
|
|
805
|
+
"kind": "plugin",
|
|
806
|
+
"defaultScope": "global",
|
|
807
|
+
"detect": {
|
|
808
|
+
"command": "claude plugin list",
|
|
809
|
+
"versionMatch": "commit-commands"
|
|
810
|
+
},
|
|
811
|
+
"install": {
|
|
812
|
+
"command": "claude plugin install commit-commands@claude-plugins-official"
|
|
813
|
+
},
|
|
814
|
+
"uninstall": {
|
|
815
|
+
"command": "claude plugin uninstall commit-commands"
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
]
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"id": "browser-testing",
|
|
822
|
+
"name": "Browser testing & automation",
|
|
823
|
+
"description": "Browser automation across plugin + MCP layers",
|
|
824
|
+
"kind": "pick-many",
|
|
825
|
+
"items": [
|
|
826
|
+
{
|
|
827
|
+
"id": "playwright",
|
|
828
|
+
"name": "playwright",
|
|
829
|
+
"description": "Microsoft's Playwright MCP packaged as a Claude Code plugin",
|
|
830
|
+
"kind": "plugin",
|
|
831
|
+
"defaultScope": "global",
|
|
832
|
+
"detect": {
|
|
833
|
+
"command": "claude plugin list",
|
|
834
|
+
"versionMatch": "playwright"
|
|
835
|
+
},
|
|
836
|
+
"install": {
|
|
837
|
+
"command": "claude plugin install playwright@claude-plugins-official"
|
|
838
|
+
},
|
|
839
|
+
"uninstall": {
|
|
840
|
+
"command": "claude plugin uninstall playwright"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"id": "browser-mcp",
|
|
845
|
+
"name": "Browser MCP",
|
|
846
|
+
"description": "Local Chrome extension MCP — uses your real browser profile (logged in, stealth)",
|
|
847
|
+
"kind": "mcp",
|
|
848
|
+
"homepage": "https://github.com/BrowserMCP/mcp",
|
|
849
|
+
"mcpKey": "browser-mcp",
|
|
850
|
+
"mcpServer": {
|
|
851
|
+
"command": "npx",
|
|
852
|
+
"args": [
|
|
853
|
+
"-y",
|
|
854
|
+
"@browsermcp/mcp@latest"
|
|
855
|
+
]
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
]
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"id": "infra-pulumi",
|
|
862
|
+
"name": "Pulumi authoring & migration",
|
|
863
|
+
"description": "IaC authoring (Pulumi)",
|
|
864
|
+
"kind": "pick-many",
|
|
865
|
+
"items": [
|
|
866
|
+
{
|
|
867
|
+
"id": "pulumi-authoring",
|
|
868
|
+
"name": "pulumi-authoring",
|
|
869
|
+
"description": "6 authoring skills: best practices, output handling, component structure, secrets, aliases, deployment workflows",
|
|
870
|
+
"kind": "plugin",
|
|
871
|
+
"homepage": "https://github.com/pulumi/agent-skills",
|
|
872
|
+
"defaultScope": "global",
|
|
873
|
+
"detect": {
|
|
874
|
+
"command": "claude plugin list",
|
|
875
|
+
"versionMatch": "pulumi-authoring"
|
|
876
|
+
},
|
|
877
|
+
"install": {
|
|
878
|
+
"command": "claude plugin marketplace add pulumi/agent-skills && claude plugin install pulumi-authoring@pulumi-agent-skills"
|
|
879
|
+
},
|
|
880
|
+
"uninstall": {
|
|
881
|
+
"command": "claude plugin uninstall pulumi-authoring"
|
|
882
|
+
}
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"id": "pulumi-migration",
|
|
886
|
+
"name": "pulumi-migration",
|
|
887
|
+
"description": "4 migration skills: Terraform → Pulumi, AWS CDK → Pulumi",
|
|
888
|
+
"kind": "plugin",
|
|
889
|
+
"homepage": "https://github.com/pulumi/agent-skills",
|
|
890
|
+
"defaultScope": "global",
|
|
891
|
+
"detect": {
|
|
892
|
+
"command": "claude plugin list",
|
|
893
|
+
"versionMatch": "pulumi-migration"
|
|
894
|
+
},
|
|
895
|
+
"install": {
|
|
896
|
+
"command": "claude plugin marketplace add pulumi/agent-skills && claude plugin install pulumi-migration@pulumi-agent-skills"
|
|
897
|
+
},
|
|
898
|
+
"uninstall": {
|
|
899
|
+
"command": "claude plugin uninstall pulumi-migration"
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
]
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"id": "cloudflare",
|
|
906
|
+
"name": "Cloudflare",
|
|
907
|
+
"description": "All Cloudflare surface area (plugin + MCP)",
|
|
908
|
+
"kind": "pick-many",
|
|
909
|
+
"items": [
|
|
910
|
+
{
|
|
911
|
+
"id": "cloudflare",
|
|
912
|
+
"name": "cloudflare",
|
|
913
|
+
"description": "Cloudflare's MCPs and platform skills (Workers, D1, R2, KV, Durable Objects, Vectorize, AI Gateway)",
|
|
914
|
+
"kind": "plugin",
|
|
915
|
+
"homepage": "https://github.com/cloudflare/skills",
|
|
916
|
+
"defaultScope": "global",
|
|
917
|
+
"detect": {
|
|
918
|
+
"command": "claude plugin list",
|
|
919
|
+
"versionMatch": "cloudflare"
|
|
920
|
+
},
|
|
921
|
+
"install": {
|
|
922
|
+
"command": "claude plugin marketplace add cloudflare/skills && claude plugin install cloudflare@cloudflare"
|
|
923
|
+
},
|
|
924
|
+
"uninstall": {
|
|
925
|
+
"command": "claude plugin uninstall cloudflare"
|
|
926
|
+
}
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"id": "cloudflare-mcp",
|
|
930
|
+
"name": "Cloudflare MCP (Code Mode)",
|
|
931
|
+
"description": "Cloudflare Code Mode remote MCP — full 2,500-endpoint API via search() + execute()",
|
|
932
|
+
"kind": "mcp",
|
|
933
|
+
"homepage": "https://github.com/cloudflare/mcp-server-cloudflare",
|
|
934
|
+
"mcpKey": "cloudflare",
|
|
935
|
+
"mcpServer": {
|
|
936
|
+
"command": "npx",
|
|
937
|
+
"args": [
|
|
938
|
+
"-y",
|
|
939
|
+
"mcp-remote",
|
|
940
|
+
"https://mcp.cloudflare.com/mcp"
|
|
941
|
+
]
|
|
942
|
+
},
|
|
943
|
+
"postInstall": [
|
|
944
|
+
{
|
|
945
|
+
"type": "claude-prompt",
|
|
946
|
+
"value": "Cloudflare MCP uses a hosted endpoint. The first invocation will open a browser window for OAuth authorization to your Cloudflare account.",
|
|
947
|
+
"label": "Configuration required"
|
|
948
|
+
}
|
|
949
|
+
]
|
|
950
|
+
}
|
|
951
|
+
]
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"id": "mcp-azure",
|
|
955
|
+
"name": "Microsoft / Azure MCPs",
|
|
956
|
+
"description": "All Microsoft/Azure MCPs",
|
|
957
|
+
"kind": "pick-many",
|
|
958
|
+
"items": [
|
|
959
|
+
{
|
|
960
|
+
"id": "azure-mcp",
|
|
961
|
+
"name": "Azure MCP",
|
|
962
|
+
"description": "40+ Azure services including AKS, Cosmos DB, Azure Monitor, Storage, Key Vault, KQL queries",
|
|
963
|
+
"kind": "mcp",
|
|
964
|
+
"homepage": "https://github.com/microsoft/mcp",
|
|
965
|
+
"mcpKey": "azure",
|
|
966
|
+
"mcpServer": {
|
|
967
|
+
"command": "npx",
|
|
968
|
+
"args": [
|
|
969
|
+
"-y",
|
|
970
|
+
"@azure/mcp@latest",
|
|
971
|
+
"server",
|
|
972
|
+
"start"
|
|
973
|
+
]
|
|
974
|
+
},
|
|
975
|
+
"postInstall": [
|
|
976
|
+
{
|
|
977
|
+
"type": "claude-prompt",
|
|
978
|
+
"value": "Azure MCP uses your local Azure CLI credentials. Run `az login` first if you have not already.",
|
|
979
|
+
"label": "Configuration required"
|
|
980
|
+
}
|
|
981
|
+
]
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"id": "azure-devops-mcp",
|
|
985
|
+
"name": "Azure DevOps MCP",
|
|
986
|
+
"description": "Azure DevOps domain-scoped tools (boards, repos, pipelines, work items, wikis)",
|
|
987
|
+
"kind": "mcp",
|
|
988
|
+
"homepage": "https://github.com/microsoft/azure-devops-mcp",
|
|
989
|
+
"mcpKey": "azure-devops",
|
|
990
|
+
"mcpServer": {
|
|
991
|
+
"command": "npx",
|
|
992
|
+
"args": [
|
|
993
|
+
"-y",
|
|
994
|
+
"@azure-devops/mcp"
|
|
995
|
+
]
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"id": "microsoft-mcp-catalog",
|
|
1000
|
+
"name": "Microsoft MCP Catalog",
|
|
1001
|
+
"description": "Umbrella catalog of every first-party Microsoft MCP server (microsoft/mcp)",
|
|
1002
|
+
"kind": "mcp",
|
|
1003
|
+
"homepage": "https://github.com/microsoft/mcp",
|
|
1004
|
+
"mcpKey": "microsoft-mcp-catalog",
|
|
1005
|
+
"mcpServer": {
|
|
1006
|
+
"command": "npx",
|
|
1007
|
+
"args": [
|
|
1008
|
+
"-y",
|
|
1009
|
+
"@microsoft/mcp@latest"
|
|
1010
|
+
]
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"id": "m365-agents-mcp",
|
|
1015
|
+
"name": "Microsoft 365 Agents Toolkit MCP",
|
|
1016
|
+
"description": "Extending agents with Copilot/Teams agent skills via Microsoft 365 Agents Toolkit",
|
|
1017
|
+
"kind": "mcp",
|
|
1018
|
+
"homepage": "https://github.com/OfficeDev/microsoft-365-agents-toolkit",
|
|
1019
|
+
"mcpKey": "m365-agents",
|
|
1020
|
+
"mcpServer": {
|
|
1021
|
+
"command": "npx",
|
|
1022
|
+
"args": [
|
|
1023
|
+
"-y",
|
|
1024
|
+
"@microsoft/m365agentstoolkit-mcp"
|
|
1025
|
+
]
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
]
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"id": "infra-mcp",
|
|
1032
|
+
"name": "Container / orchestration runtime",
|
|
1033
|
+
"description": "Container/orchestration runtime (Kubernetes, Docker, K8s security)",
|
|
1034
|
+
"kind": "pick-many",
|
|
1035
|
+
"items": [
|
|
1036
|
+
{
|
|
1037
|
+
"id": "kubernetes-mcp",
|
|
1038
|
+
"name": "Kubernetes MCP",
|
|
1039
|
+
"description": "Single Go binary, multi-cluster, read-only/destructive-disable modes, CRDs, no kubectl shell-out",
|
|
1040
|
+
"kind": "mcp",
|
|
1041
|
+
"homepage": "https://github.com/containers/kubernetes-mcp-server",
|
|
1042
|
+
"mcpKey": "kubernetes",
|
|
1043
|
+
"mcpServer": {
|
|
1044
|
+
"command": "npx",
|
|
1045
|
+
"args": [
|
|
1046
|
+
"-y",
|
|
1047
|
+
"kubernetes-mcp-server@latest"
|
|
1048
|
+
]
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"id": "docker-mcp-toolkit",
|
|
1053
|
+
"name": "Docker MCP Toolkit",
|
|
1054
|
+
"description": "Docker MCP Gateway — 200+ verified servers, signed images, OAuth credential vault",
|
|
1055
|
+
"kind": "mcp",
|
|
1056
|
+
"homepage": "https://docs.docker.com/ai/mcp-catalog-and-toolkit/",
|
|
1057
|
+
"mcpKey": "docker",
|
|
1058
|
+
"mcpServer": {
|
|
1059
|
+
"command": "docker",
|
|
1060
|
+
"args": [
|
|
1061
|
+
"mcp",
|
|
1062
|
+
"gateway",
|
|
1063
|
+
"run"
|
|
1064
|
+
]
|
|
1065
|
+
},
|
|
1066
|
+
"postInstall": [
|
|
1067
|
+
{
|
|
1068
|
+
"type": "claude-prompt",
|
|
1069
|
+
"value": "Docker MCP Toolkit requires Docker Desktop with the MCP extension installed. Open Docker Desktop → Extensions → install the MCP Toolkit before using this MCP.",
|
|
1070
|
+
"label": "Configuration required"
|
|
1071
|
+
}
|
|
1072
|
+
]
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"id": "kubernetes-operations",
|
|
1076
|
+
"name": "kubernetes-operations",
|
|
1077
|
+
"description": "Kubernetes operations skill from wshobson/agents — NetworkPolicies, Pod Security Standards, RBAC, OPA Gatekeeper, mTLS",
|
|
1078
|
+
"kind": "plugin",
|
|
1079
|
+
"homepage": "https://github.com/wshobson/agents",
|
|
1080
|
+
"defaultScope": "global",
|
|
1081
|
+
"detect": {
|
|
1082
|
+
"command": "claude plugin list",
|
|
1083
|
+
"versionMatch": "kubernetes-operations"
|
|
1084
|
+
},
|
|
1085
|
+
"install": {
|
|
1086
|
+
"command": "claude plugin marketplace add wshobson/agents && claude plugin install kubernetes-operations@wshobson-agents"
|
|
1087
|
+
},
|
|
1088
|
+
"uninstall": {
|
|
1089
|
+
"command": "claude plugin uninstall kubernetes-operations"
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
]
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"id": "mcp-search",
|
|
1096
|
+
"name": "Web search MCPs",
|
|
1097
|
+
"description": "Web search bundle",
|
|
1098
|
+
"kind": "pick-many",
|
|
1099
|
+
"items": [
|
|
1100
|
+
{
|
|
1101
|
+
"id": "tavily-mcp",
|
|
1102
|
+
"name": "Tavily MCP",
|
|
1103
|
+
"description": "Real-time search + extract + map + crawl",
|
|
1104
|
+
"kind": "mcp",
|
|
1105
|
+
"homepage": "https://tavily.com",
|
|
1106
|
+
"mcpKey": "tavily",
|
|
1107
|
+
"mcpServer": {
|
|
1108
|
+
"command": "npx",
|
|
1109
|
+
"args": [
|
|
1110
|
+
"-y",
|
|
1111
|
+
"mcp-remote",
|
|
1112
|
+
"https://mcp.tavily.com/mcp/"
|
|
1113
|
+
]
|
|
1114
|
+
},
|
|
1115
|
+
"postInstall": [
|
|
1116
|
+
{
|
|
1117
|
+
"type": "claude-prompt",
|
|
1118
|
+
"value": "Tavily MCP requires TAVILY_API_KEY. Get one at https://app.tavily.com and set it in your shell or .env before using this MCP.",
|
|
1119
|
+
"label": "Configuration required"
|
|
1120
|
+
}
|
|
1121
|
+
]
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"id": "exa-mcp",
|
|
1125
|
+
"name": "Exa MCP",
|
|
1126
|
+
"description": "Neural / semantic search; outperforms Tavily on multi-hop benchmarks",
|
|
1127
|
+
"kind": "mcp",
|
|
1128
|
+
"homepage": "https://github.com/exa-labs/exa-mcp-server",
|
|
1129
|
+
"mcpKey": "exa",
|
|
1130
|
+
"mcpServer": {
|
|
1131
|
+
"command": "npx",
|
|
1132
|
+
"args": [
|
|
1133
|
+
"-y",
|
|
1134
|
+
"exa-mcp-server"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
"postInstall": [
|
|
1138
|
+
{
|
|
1139
|
+
"type": "claude-prompt",
|
|
1140
|
+
"value": "Exa MCP requires EXA_API_KEY. Get one at https://dashboard.exa.ai and set it in your shell or .env before using this MCP.",
|
|
1141
|
+
"label": "Configuration required"
|
|
1142
|
+
}
|
|
1143
|
+
]
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"id": "brave-mcp",
|
|
1147
|
+
"name": "Brave Search MCP",
|
|
1148
|
+
"description": "Brave Search with operator support (site:, filetype:, lang:)",
|
|
1149
|
+
"kind": "mcp",
|
|
1150
|
+
"homepage": "https://brave.com/search/api/",
|
|
1151
|
+
"mcpKey": "brave-search",
|
|
1152
|
+
"mcpServer": {
|
|
1153
|
+
"command": "npx",
|
|
1154
|
+
"args": [
|
|
1155
|
+
"-y",
|
|
1156
|
+
"@brave/brave-search-mcp-server"
|
|
1157
|
+
]
|
|
1158
|
+
},
|
|
1159
|
+
"postInstall": [
|
|
1160
|
+
{
|
|
1161
|
+
"type": "claude-prompt",
|
|
1162
|
+
"value": "Brave Search MCP requires BRAVE_API_KEY. Get one at https://api.search.brave.com and set it in your shell or .env before using this MCP.",
|
|
1163
|
+
"label": "Configuration required"
|
|
1164
|
+
}
|
|
1165
|
+
]
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"id": "omnisearch-mcp",
|
|
1169
|
+
"name": "MCP Omnisearch",
|
|
1170
|
+
"description": "Single MCP fanning out to Tavily / Brave / Kagi / Exa / Linkup / Firecrawl",
|
|
1171
|
+
"kind": "mcp",
|
|
1172
|
+
"homepage": "https://github.com/spences10/mcp-omnisearch",
|
|
1173
|
+
"mcpKey": "omnisearch",
|
|
1174
|
+
"mcpServer": {
|
|
1175
|
+
"command": "npx",
|
|
1176
|
+
"args": [
|
|
1177
|
+
"-y",
|
|
1178
|
+
"mcp-omnisearch"
|
|
1179
|
+
]
|
|
1180
|
+
},
|
|
1181
|
+
"postInstall": [
|
|
1182
|
+
{
|
|
1183
|
+
"type": "claude-prompt",
|
|
1184
|
+
"value": "Omnisearch MCP aggregates multiple providers. Set the API keys you need (TAVILY_API_KEY, BRAVE_API_KEY, EXA_API_KEY, PERPLEXITY_API_KEY, KAGI_API_KEY, JINA_API_KEY, FIRECRAWL_API_KEY) in your shell or .env. See https://github.com/spences10/mcp-omnisearch for the full list.",
|
|
1185
|
+
"label": "Configuration required"
|
|
1186
|
+
}
|
|
1187
|
+
]
|
|
1188
|
+
}
|
|
1189
|
+
]
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"id": "mcp-rust-docs",
|
|
1193
|
+
"name": "Rust docs.rs MCPs",
|
|
1194
|
+
"description": "Rust documentation MCPs",
|
|
1195
|
+
"kind": "pick-many",
|
|
1196
|
+
"items": [
|
|
1197
|
+
{
|
|
1198
|
+
"id": "rust-docs-govcraft",
|
|
1199
|
+
"name": "rust-docs-mcp-server (Govcraft)",
|
|
1200
|
+
"description": "Per-crate docs.rs RAG with embeddings — run an instance per crate (syn, quote, thiserror, tokio)",
|
|
1201
|
+
"kind": "mcp",
|
|
1202
|
+
"homepage": "https://github.com/Govcraft/rust-docs-mcp-server",
|
|
1203
|
+
"mcpKey": "rust-docs-govcraft",
|
|
1204
|
+
"mcpServer": {
|
|
1205
|
+
"command": "rust-docs-mcp-server",
|
|
1206
|
+
"args": []
|
|
1207
|
+
},
|
|
1208
|
+
"postInstall": [
|
|
1209
|
+
{
|
|
1210
|
+
"type": "claude-prompt",
|
|
1211
|
+
"value": "rust-docs-mcp-server is a Rust binary. Install it first: `cargo install rust-docs-mcp-server` (requires the Rust toolchain).",
|
|
1212
|
+
"label": "Configuration required"
|
|
1213
|
+
}
|
|
1214
|
+
]
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"id": "rust-docs-snowmead",
|
|
1218
|
+
"name": "rust-docs-mcp (snowmead)",
|
|
1219
|
+
"description": "Cargo workspaces, GitHub repo sources, offline cache, pattern-based search across rustdoc JSON",
|
|
1220
|
+
"kind": "mcp",
|
|
1221
|
+
"homepage": "https://github.com/snowmead/rust-docs-mcp",
|
|
1222
|
+
"mcpKey": "rust-docs-snowmead",
|
|
1223
|
+
"mcpServer": {
|
|
1224
|
+
"command": "rust-docs-mcp",
|
|
1225
|
+
"args": []
|
|
1226
|
+
},
|
|
1227
|
+
"postInstall": [
|
|
1228
|
+
{
|
|
1229
|
+
"type": "claude-prompt",
|
|
1230
|
+
"value": "rust-docs-mcp is a Rust binary. Install it first: `cargo install --git https://github.com/snowmead/rust-docs-mcp` (requires the Rust toolchain).",
|
|
1231
|
+
"label": "Configuration required"
|
|
1232
|
+
}
|
|
1233
|
+
]
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"id": "mcp-docsrs",
|
|
1237
|
+
"name": "mcp-docsrs",
|
|
1238
|
+
"description": "Lightweight docs.rs JSON API server with persistent SQLite cache",
|
|
1239
|
+
"kind": "mcp",
|
|
1240
|
+
"homepage": "https://github.com/vexxvakan/mcp-docsrs",
|
|
1241
|
+
"mcpKey": "mcp-docsrs",
|
|
1242
|
+
"mcpServer": {
|
|
1243
|
+
"command": "npx",
|
|
1244
|
+
"args": [
|
|
1245
|
+
"-y",
|
|
1246
|
+
"mcp-docsrs"
|
|
1247
|
+
]
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
]
|
|
1251
|
+
}
|
|
1252
|
+
]
|
|
1253
|
+
}
|