claudeup 4.32.1 → 4.34.0

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.
@@ -1,482 +1,11 @@
1
1
  import type { McpServer } from "../types/index.js";
2
2
 
3
- export const curatedMcpServers: McpServer[] = [
4
- // ═══════════════════════════════════════════════════════════════
5
- // BROWSER & AUTOMATION
6
- // ═══════════════════════════════════════════════════════════════
7
- {
8
- name: "chrome-devtools",
9
- description:
10
- "Control Chrome browser, inspect DOM, debug JavaScript, capture screenshots",
11
- command: "npx",
12
- args: ["-y", "chrome-devtools-mcp@latest"],
13
- category: "browser",
14
- requiresConfig: false,
15
- },
16
- {
17
- name: "puppeteer",
18
- description: "Headless browser automation for testing and scraping",
19
- command: "npx",
20
- args: ["-y", "@anthropic/mcp-server-puppeteer"],
21
- category: "browser",
22
- requiresConfig: false,
23
- },
24
-
25
- // ═══════════════════════════════════════════════════════════════
26
- // AI & SEARCH
27
- // ═══════════════════════════════════════════════════════════════
28
- {
29
- name: "claude-context",
30
- description: "Semantic code search with vector embeddings (Zilliz/Milvus)",
31
- command: "npx",
32
- args: ["-y", "@zilliz/claude-context-mcp@latest"],
33
- env: {
34
- OPENAI_API_KEY: "${OPENAI_API_KEY}",
35
- MILVUS_ADDRESS: "${MILVUS_ADDRESS}",
36
- MILVUS_TOKEN: "${MILVUS_TOKEN}",
37
- },
38
- category: "ai",
39
- requiresConfig: true,
40
- configFields: [
41
- {
42
- name: "OPENAI_API_KEY",
43
- label: "OpenAI API Key (for embeddings)",
44
- type: "string",
45
- required: true,
46
- envVar: "OPENAI_API_KEY",
47
- },
48
- {
49
- name: "MILVUS_ADDRESS",
50
- label: "Zilliz Cloud Public Endpoint",
51
- type: "url",
52
- required: true,
53
- envVar: "MILVUS_ADDRESS",
54
- },
55
- {
56
- name: "MILVUS_TOKEN",
57
- label: "Zilliz Cloud API Key",
58
- type: "string",
59
- required: true,
60
- envVar: "MILVUS_TOKEN",
61
- },
62
- ],
63
- },
64
- {
65
- name: "exa",
66
- description: "AI-powered web search with neural search capabilities",
67
- type: "http",
68
- url: "https://mcp.exa.ai/mcp",
69
- category: "ai",
70
- requiresConfig: false,
71
- },
72
- {
73
- name: "sequential-thinking",
74
- description: "Enhanced reasoning with step-by-step thinking",
75
- command: "npx",
76
- args: ["-y", "@anthropic/mcp-server-sequential-thinking"],
77
- category: "ai",
78
- requiresConfig: false,
79
- },
80
-
81
- // ═══════════════════════════════════════════════════════════════
82
- // DESIGN & CREATIVE
83
- // ═══════════════════════════════════════════════════════════════
84
- {
85
- name: "figma",
86
- description: "Access Figma designs, components, and design tokens",
87
- type: "http",
88
- url: "https://mcp.figma.com/mcp",
89
- category: "design",
90
- requiresConfig: false,
91
- },
92
-
93
- // ═══════════════════════════════════════════════════════════════
94
- // CLOUD & INFRASTRUCTURE (AWS)
95
- // ═══════════════════════════════════════════════════════════════
96
- {
97
- name: "aws-kb-retrieval",
98
- description: "AWS Bedrock Knowledge Base retrieval and RAG",
99
- command: "uvx",
100
- args: ["awslabs.aws-kb-retrieval-mcp-server@latest"],
101
- env: {
102
- AWS_PROFILE: "${AWS_PROFILE}",
103
- AWS_REGION: "${AWS_REGION}",
104
- },
105
- category: "cloud",
106
- requiresConfig: true,
107
- configFields: [
108
- {
109
- name: "AWS_PROFILE",
110
- label: "AWS Profile Name",
111
- type: "string",
112
- required: false,
113
- default: "default",
114
- envVar: "AWS_PROFILE",
115
- },
116
- {
117
- name: "AWS_REGION",
118
- label: "AWS Region",
119
- type: "string",
120
- required: true,
121
- default: "us-east-1",
122
- envVar: "AWS_REGION",
123
- },
124
- ],
125
- },
126
- {
127
- name: "aws-cdk",
128
- description: "AWS CDK infrastructure as code assistance",
129
- command: "uvx",
130
- args: ["awslabs.cdk-mcp-server@latest"],
131
- env: {
132
- AWS_PROFILE: "${AWS_PROFILE}",
133
- AWS_REGION: "${AWS_REGION}",
134
- },
135
- category: "cloud",
136
- requiresConfig: true,
137
- configFields: [
138
- {
139
- name: "AWS_PROFILE",
140
- label: "AWS Profile Name",
141
- type: "string",
142
- required: false,
143
- default: "default",
144
- envVar: "AWS_PROFILE",
145
- },
146
- {
147
- name: "AWS_REGION",
148
- label: "AWS Region",
149
- type: "string",
150
- required: true,
151
- default: "us-east-1",
152
- envVar: "AWS_REGION",
153
- },
154
- ],
155
- },
156
- {
157
- name: "aws-cloudwatch-logs",
158
- description: "Query and analyze AWS CloudWatch Logs",
159
- command: "uvx",
160
- args: ["awslabs.cloudwatch-logs-mcp-server@latest"],
161
- env: {
162
- AWS_PROFILE: "${AWS_PROFILE}",
163
- AWS_REGION: "${AWS_REGION}",
164
- },
165
- category: "cloud",
166
- requiresConfig: true,
167
- configFields: [
168
- {
169
- name: "AWS_PROFILE",
170
- label: "AWS Profile Name",
171
- type: "string",
172
- required: false,
173
- default: "default",
174
- envVar: "AWS_PROFILE",
175
- },
176
- {
177
- name: "AWS_REGION",
178
- label: "AWS Region",
179
- type: "string",
180
- required: true,
181
- default: "us-east-1",
182
- envVar: "AWS_REGION",
183
- },
184
- ],
185
- },
186
- {
187
- name: "aws-cost-analysis",
188
- description: "AWS cost analysis and optimization recommendations",
189
- command: "uvx",
190
- args: ["awslabs.cost-analysis-mcp-server@latest"],
191
- env: {
192
- AWS_PROFILE: "${AWS_PROFILE}",
193
- AWS_REGION: "${AWS_REGION}",
194
- },
195
- category: "cloud",
196
- requiresConfig: true,
197
- configFields: [
198
- {
199
- name: "AWS_PROFILE",
200
- label: "AWS Profile Name",
201
- type: "string",
202
- required: false,
203
- default: "default",
204
- envVar: "AWS_PROFILE",
205
- },
206
- {
207
- name: "AWS_REGION",
208
- label: "AWS Region",
209
- type: "string",
210
- required: true,
211
- default: "us-east-1",
212
- envVar: "AWS_REGION",
213
- },
214
- ],
215
- },
216
-
217
- // ═══════════════════════════════════════════════════════════════
218
- // DATABASE
219
- // ═══════════════════════════════════════════════════════════════
220
- {
221
- name: "postgres",
222
- description: "Query PostgreSQL databases with read-only access",
223
- command: "npx",
224
- args: ["-y", "@anthropic/mcp-server-postgres"],
225
- env: {
226
- DATABASE_URL: "${DATABASE_URL}",
227
- },
228
- category: "database",
229
- requiresConfig: true,
230
- configFields: [
231
- {
232
- name: "DATABASE_URL",
233
- label: "PostgreSQL Connection URL",
234
- type: "url",
235
- required: true,
236
- envVar: "DATABASE_URL",
237
- },
238
- ],
239
- },
240
- {
241
- name: "sqlite",
242
- description: "Query SQLite databases locally",
243
- command: "npx",
244
- args: ["-y", "@anthropic/mcp-server-sqlite", "${DATABASE_PATH}"],
245
- category: "database",
246
- requiresConfig: true,
247
- configFields: [
248
- {
249
- name: "DATABASE_PATH",
250
- label: "SQLite Database File Path",
251
- type: "path",
252
- required: true,
253
- },
254
- ],
255
- },
256
-
257
- // ═══════════════════════════════════════════════════════════════
258
- // DEVELOPER TOOLS
259
- // ═══════════════════════════════════════════════════════════════
260
- {
261
- name: "github",
262
- description: "Manage GitHub repos, issues, PRs, and actions",
263
- command: "npx",
264
- args: ["-y", "@anthropic/mcp-server-github"],
265
- env: {
266
- GITHUB_TOKEN: "${GITHUB_TOKEN}",
267
- },
268
- category: "dev-tools",
269
- requiresConfig: true,
270
- configFields: [
271
- {
272
- name: "GITHUB_TOKEN",
273
- label: "GitHub Personal Access Token",
274
- type: "string",
275
- required: true,
276
- envVar: "GITHUB_TOKEN",
277
- },
278
- ],
279
- },
280
- {
281
- name: "gitlab",
282
- description: "Manage GitLab repos, merge requests, and pipelines",
283
- command: "npx",
284
- args: ["-y", "@anthropic/mcp-server-gitlab"],
285
- env: {
286
- GITLAB_TOKEN: "${GITLAB_TOKEN}",
287
- GITLAB_URL: "${GITLAB_URL}",
288
- },
289
- category: "dev-tools",
290
- requiresConfig: true,
291
- configFields: [
292
- {
293
- name: "GITLAB_TOKEN",
294
- label: "GitLab Personal Access Token",
295
- type: "string",
296
- required: true,
297
- envVar: "GITLAB_TOKEN",
298
- },
299
- {
300
- name: "GITLAB_URL",
301
- label: "GitLab URL (self-hosted)",
302
- type: "url",
303
- required: false,
304
- default: "https://gitlab.com",
305
- envVar: "GITLAB_URL",
306
- },
307
- ],
308
- },
309
- {
310
- name: "filesystem",
311
- description: "Read, write, and search files in allowed directories",
312
- command: "npx",
313
- args: ["-y", "@anthropic/mcp-server-filesystem", "${ALLOWED_PATH}"],
314
- category: "dev-tools",
315
- requiresConfig: true,
316
- configFields: [
317
- {
318
- name: "ALLOWED_PATH",
319
- label: "Allowed Directory Path",
320
- type: "path",
321
- required: true,
322
- default: ".",
323
- },
324
- ],
325
- },
326
-
327
- // ═══════════════════════════════════════════════════════════════
328
- // PRODUCTIVITY
329
- // ═══════════════════════════════════════════════════════════════
330
- {
331
- name: "slack",
332
- description: "Send messages and interact with Slack channels",
333
- command: "npx",
334
- args: ["-y", "@anthropic/mcp-server-slack"],
335
- env: {
336
- SLACK_BOT_TOKEN: "${SLACK_BOT_TOKEN}",
337
- },
338
- category: "productivity",
339
- requiresConfig: true,
340
- configFields: [
341
- {
342
- name: "SLACK_BOT_TOKEN",
343
- label: "Slack Bot Token (xoxb-...)",
344
- type: "string",
345
- required: true,
346
- envVar: "SLACK_BOT_TOKEN",
347
- },
348
- ],
349
- },
350
- {
351
- name: "google-drive",
352
- description: "Access and search Google Drive files",
353
- command: "npx",
354
- args: ["-y", "@anthropic/mcp-server-google-drive"],
355
- category: "productivity",
356
- requiresConfig: true,
357
- configFields: [
358
- {
359
- name: "GOOGLE_CREDENTIALS",
360
- label: "Google OAuth Credentials JSON Path",
361
- type: "path",
362
- required: true,
363
- envVar: "GOOGLE_APPLICATION_CREDENTIALS",
364
- },
365
- ],
366
- },
367
- {
368
- name: "memory",
369
- description: "Persistent memory storage across conversations",
370
- command: "npx",
371
- args: ["-y", "@anthropic/mcp-server-memory"],
372
- category: "productivity",
373
- requiresConfig: false,
374
- },
375
- {
376
- name: "fetch",
377
- description: "Make HTTP requests to external APIs",
378
- command: "npx",
379
- args: ["-y", "@anthropic/mcp-server-fetch"],
380
- category: "productivity",
381
- requiresConfig: false,
382
- },
383
-
384
- // ═══════════════════════════════════════════════════════════════
385
- // SEO & ANALYTICS
386
- // ═══════════════════════════════════════════════════════════════
387
- {
388
- name: "google-analytics",
389
- description:
390
- "Google Analytics 4 data - page views, engagement, conversions",
391
- command: "npx",
392
- args: ["-y", "mcp-server-google-analytics"],
393
- env: {
394
- GOOGLE_APPLICATION_CREDENTIALS: "${GOOGLE_APPLICATION_CREDENTIALS}",
395
- GA_PROPERTY_ID: "${GA_PROPERTY_ID}",
396
- },
397
- category: "seo",
398
- requiresConfig: true,
399
- configFields: [
400
- {
401
- name: "GOOGLE_APPLICATION_CREDENTIALS",
402
- label: "Service Account JSON Path",
403
- type: "path",
404
- required: true,
405
- envVar: "GOOGLE_APPLICATION_CREDENTIALS",
406
- },
407
- {
408
- name: "GA_PROPERTY_ID",
409
- label: "GA4 Property ID (properties/123456789)",
410
- type: "string",
411
- required: true,
412
- envVar: "GA_PROPERTY_ID",
413
- },
414
- ],
415
- },
416
- {
417
- name: "google-search-console",
418
- description: "Search Console - impressions, clicks, CTR, Core Web Vitals",
419
- command: "npx",
420
- args: ["-y", "mcp-server-gsc"],
421
- env: {
422
- GOOGLE_APPLICATION_CREDENTIALS: "${GOOGLE_APPLICATION_CREDENTIALS}",
423
- GSC_SITE_URL: "${GSC_SITE_URL}",
424
- },
425
- category: "seo",
426
- requiresConfig: true,
427
- configFields: [
428
- {
429
- name: "GOOGLE_APPLICATION_CREDENTIALS",
430
- label: "Service Account JSON Path",
431
- type: "path",
432
- required: true,
433
- envVar: "GOOGLE_APPLICATION_CREDENTIALS",
434
- },
435
- {
436
- name: "GSC_SITE_URL",
437
- label: "Site URL (https://example.com)",
438
- type: "url",
439
- required: true,
440
- envVar: "GSC_SITE_URL",
441
- },
442
- ],
443
- },
444
- {
445
- name: "se-ranking",
446
- description:
447
- "SE Ranking - keyword rankings, backlinks, competitor analysis (requires Docker)",
448
- command: "docker",
449
- args: [
450
- "run",
451
- "-i",
452
- "--rm",
453
- "-e",
454
- "SERANKING_API_TOKEN=${SERANKING_API_TOKEN}",
455
- "seranking/seo-data-api-mcp-server:latest",
456
- ],
457
- env: {
458
- SERANKING_API_TOKEN: "${SERANKING_API_TOKEN}",
459
- },
460
- category: "seo",
461
- requiresConfig: true,
462
- configFields: [
463
- {
464
- name: "SERANKING_API_TOKEN",
465
- label: "SE Ranking API Token",
466
- type: "string",
467
- required: true,
468
- envVar: "SERANKING_API_TOKEN",
469
- },
470
- ],
471
- },
472
- ];
473
-
474
- export function getMcpServersByCategory(): Record<string, McpServer[]> {
3
+ export function getMcpServersByCategory(
4
+ servers: McpServer[],
5
+ ): Record<string, McpServer[]> {
475
6
  const categories: Record<string, McpServer[]> = {};
476
- for (const server of curatedMcpServers) {
477
- if (!categories[server.category]) {
478
- categories[server.category] = [];
479
- }
7
+ for (const server of servers) {
8
+ if (!categories[server.category]) categories[server.category] = [];
480
9
  categories[server.category].push(server);
481
10
  }
482
11
  return categories;
@@ -520,7 +49,3 @@ export function getCategoryIcon(category: string): string {
520
49
  };
521
50
  return icons[category] || "📦";
522
51
  }
523
-
524
- export function getAllMcpServers(): McpServer[] {
525
- return curatedMcpServers;
526
- }
@@ -9,97 +9,6 @@ export interface RecommendedSkill {
9
9
  stars?: number; // fallback when GitHub API is rate-limited
10
10
  }
11
11
 
12
- export const RECOMMENDED_SKILLS: RecommendedSkill[] = [
13
- {
14
- name: "Find Skills",
15
- repo: "vercel-labs/skills",
16
- skillPath: "skills/find-skills",
17
- description: "Discover and install new skills from the ecosystem",
18
- category: "search",
19
- stars: 12000,
20
- },
21
- {
22
- name: "React Best Practices",
23
- repo: "vercel-labs/agent-skills",
24
- skillPath: "skills/react-best-practices",
25
- description: "Modern React patterns and Vercel deployment guidelines",
26
- category: "frontend",
27
- stars: 24000,
28
- },
29
- {
30
- name: "Web Design Guidelines",
31
- repo: "vercel-labs/agent-skills",
32
- skillPath: "skills/web-design-guidelines",
33
- description: "UI/UX design principles and web standards",
34
- category: "design",
35
- stars: 24000,
36
- },
37
- {
38
- name: "Remotion Best Practices",
39
- repo: "remotion-dev/skills",
40
- skillPath: "skills/remotion-best-practices",
41
- description: "Programmatic video creation with Remotion",
42
- category: "media",
43
- stars: 2400,
44
- },
45
- {
46
- name: "UI/UX Pro Max",
47
- repo: "jh941213/my-claude-code-asset",
48
- skillPath: "skills_en/ui-ux-pro-max",
49
- description: "50 styles, 21 palettes, 50 font pairings, 9 stacks. Covers React, Next.js, Vue, Svelte, SwiftUI, Flutter, Tailwind, shadcn/ui",
50
- category: "design",
51
- stars: 109,
52
- },
53
- {
54
- name: "ElevenLabs TTS",
55
- repo: "inferen-sh/skills",
56
- skillPath: "skills/elevenlabs-tts",
57
- description: "Text-to-speech with ElevenLabs API integration",
58
- category: "media",
59
- stars: 206,
60
- },
61
- {
62
- name: "Audit Website",
63
- repo: "squirrelscan/skills",
64
- skillPath: "skills/audit-website",
65
- description: "Security and quality auditing for web applications",
66
- category: "security",
67
- stars: 67,
68
- },
69
- {
70
- name: "Systematic Debugging",
71
- repo: "obra/superpowers",
72
- skillPath: "skills/systematic-debugging",
73
- description: "Structured debugging methodology with root cause analysis",
74
- category: "debugging",
75
- stars: 113000,
76
- },
77
- {
78
- name: "shadcn/ui",
79
- repo: "shadcn-ui/ui",
80
- skillPath: "packages/shadcn",
81
- description: "shadcn/ui component library patterns and usage",
82
- category: "frontend",
83
- stars: 111000,
84
- },
85
- {
86
- name: "Neon Postgres",
87
- repo: "neondatabase/agent-skills",
88
- skillPath: "skills/neon-postgres",
89
- description: "Neon serverless Postgres setup and best practices",
90
- category: "database",
91
- stars: 42,
92
- },
93
- {
94
- name: "Neon Serverless",
95
- repo: "neondatabase/ai-rules",
96
- skillPath: "skills/neon-serverless",
97
- description: "Serverless database patterns with Neon",
98
- category: "database",
99
- stars: 81,
100
- },
101
- ];
102
-
103
12
  // ─── Skill Sets (grouped skills from a single repo) ──────────────────────────
104
13
 
105
14
  export interface RecommendedSkillSet {
@@ -110,23 +19,6 @@ export interface RecommendedSkillSet {
110
19
  stars?: number;
111
20
  }
112
21
 
113
- export const RECOMMENDED_SKILL_SETS: RecommendedSkillSet[] = [
114
- {
115
- name: "Hugging Face",
116
- repo: "huggingface/skills",
117
- description: "Give your agents the power of the Hugging Face ecosystem",
118
- icon: "\u{1F917}",
119
- stars: 10000,
120
- },
121
- {
122
- name: "Browserbase",
123
- repo: "browserbase/skills",
124
- description: "Web browsing, UI testing, and browser automation via the Claude Agent SDK",
125
- icon: "\u{1F310}",
126
- stars: 521,
127
- },
128
- ];
129
-
130
22
  // ─── Star reliability classification ────────────────────────────────────────
131
23
  // Stars from these repos don't reflect individual skill quality.
132
24
 
@@ -140,11 +32,17 @@ const MEGA_REPOS = new Set([
140
32
  ]);
141
33
 
142
34
  /** Skill-dump repos: large collections where stars reflect quantity, not quality. */
35
+ // Renamed repos are listed under BOTH names on purpose. The curated catalog
36
+ // serves the current name while older cached copies and this file's fallback
37
+ // list still carry the old one; dropping either silently reclassifies the repo
38
+ // as "dedicated" and its stars start reading as a quality signal again.
143
39
  const SKILL_DUMP_REPOS = new Set([
144
40
  "affaan-m/everything-claude-code",
145
41
  "openclaw/openclaw",
146
42
  "jh941213/my-claude-code-asset",
43
+ "jh941213/my-cc-harness", // renamed from my-claude-code-asset
147
44
  "inferen-sh/skills",
45
+ "inference-sh/skills", // renamed from inferen-sh
148
46
  ]);
149
47
 
150
48
  /**