@qazuor/claude-code-config 0.1.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.
Files changed (171) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1248 -0
  3. package/dist/bin.cjs +11886 -0
  4. package/dist/bin.cjs.map +1 -0
  5. package/dist/bin.d.cts +1 -0
  6. package/dist/bin.d.ts +1 -0
  7. package/dist/bin.js +11869 -0
  8. package/dist/bin.js.map +1 -0
  9. package/dist/index.cjs +3887 -0
  10. package/dist/index.cjs.map +1 -0
  11. package/dist/index.d.cts +1325 -0
  12. package/dist/index.d.ts +1325 -0
  13. package/dist/index.js +3835 -0
  14. package/dist/index.js.map +1 -0
  15. package/package.json +86 -0
  16. package/templates/.log/notifications.log +1775 -0
  17. package/templates/agents/README.md +164 -0
  18. package/templates/agents/_registry.json +443 -0
  19. package/templates/agents/design/content-writer.md +353 -0
  20. package/templates/agents/design/ux-ui-designer.md +382 -0
  21. package/templates/agents/engineering/astro-engineer.md +293 -0
  22. package/templates/agents/engineering/db-drizzle-engineer.md +360 -0
  23. package/templates/agents/engineering/express-engineer.md +316 -0
  24. package/templates/agents/engineering/fastify-engineer.md +399 -0
  25. package/templates/agents/engineering/hono-engineer.md +263 -0
  26. package/templates/agents/engineering/mongoose-engineer.md +473 -0
  27. package/templates/agents/engineering/nestjs-engineer.md +429 -0
  28. package/templates/agents/engineering/nextjs-engineer.md +451 -0
  29. package/templates/agents/engineering/node-typescript-engineer.md +347 -0
  30. package/templates/agents/engineering/prisma-engineer.md +432 -0
  31. package/templates/agents/engineering/react-senior-dev.md +394 -0
  32. package/templates/agents/engineering/tanstack-start-engineer.md +447 -0
  33. package/templates/agents/engineering/tech-lead.md +269 -0
  34. package/templates/agents/product/product-functional.md +329 -0
  35. package/templates/agents/product/product-technical.md +578 -0
  36. package/templates/agents/quality/debugger.md +514 -0
  37. package/templates/agents/quality/qa-engineer.md +390 -0
  38. package/templates/agents/specialized/enrichment-agent.md +277 -0
  39. package/templates/agents/specialized/i18n-specialist.md +322 -0
  40. package/templates/agents/specialized/seo-ai-specialist.md +387 -0
  41. package/templates/agents/specialized/tech-writer.md +300 -0
  42. package/templates/code-style/.editorconfig +27 -0
  43. package/templates/code-style/.prettierignore +25 -0
  44. package/templates/code-style/.prettierrc +12 -0
  45. package/templates/code-style/biome.json +78 -0
  46. package/templates/code-style/commitlint.config.js +44 -0
  47. package/templates/commands/README.md +175 -0
  48. package/templates/commands/_registry.json +420 -0
  49. package/templates/commands/add-new-entity.md +211 -0
  50. package/templates/commands/audit/accessibility-audit.md +360 -0
  51. package/templates/commands/audit/performance-audit.md +290 -0
  52. package/templates/commands/audit/security-audit.md +231 -0
  53. package/templates/commands/code-check.md +127 -0
  54. package/templates/commands/five-why.md +225 -0
  55. package/templates/commands/formatting/format-markdown.md +197 -0
  56. package/templates/commands/git/commit.md +247 -0
  57. package/templates/commands/meta/create-agent.md +257 -0
  58. package/templates/commands/meta/create-command.md +312 -0
  59. package/templates/commands/meta/create-skill.md +321 -0
  60. package/templates/commands/meta/help.md +318 -0
  61. package/templates/commands/planning/check-completed-tasks.md +224 -0
  62. package/templates/commands/planning/cleanup-issues.md +248 -0
  63. package/templates/commands/planning/planning-cleanup.md +251 -0
  64. package/templates/commands/planning/sync-planning-github.md +133 -0
  65. package/templates/commands/planning/sync-todos-github.md +203 -0
  66. package/templates/commands/quality-check.md +211 -0
  67. package/templates/commands/run-tests.md +159 -0
  68. package/templates/commands/start-feature-plan.md +232 -0
  69. package/templates/commands/start-refactor-plan.md +244 -0
  70. package/templates/commands/sync-planning.md +176 -0
  71. package/templates/commands/update-docs.md +242 -0
  72. package/templates/docs/CHECKPOINT-SYSTEM.md +504 -0
  73. package/templates/docs/INDEX.md +677 -0
  74. package/templates/docs/RECOMMENDED-HOOKS.md +415 -0
  75. package/templates/docs/_registry.json +329 -0
  76. package/templates/docs/diagrams/README.md +220 -0
  77. package/templates/docs/diagrams/agent-hierarchy.mmd +55 -0
  78. package/templates/docs/diagrams/documentation-map.mmd +61 -0
  79. package/templates/docs/diagrams/tools-relationship.mmd +55 -0
  80. package/templates/docs/diagrams/workflow-decision-tree.mmd +38 -0
  81. package/templates/docs/doc-sync.md +533 -0
  82. package/templates/docs/examples/end-to-end-workflow.md +1505 -0
  83. package/templates/docs/glossary.md +495 -0
  84. package/templates/docs/guides/mockup-prompt-engineering.md +644 -0
  85. package/templates/docs/guides/mockup-setup.md +737 -0
  86. package/templates/docs/learnings/README.md +250 -0
  87. package/templates/docs/learnings/common-architectural-patterns.md +123 -0
  88. package/templates/docs/learnings/common-mistakes-to-avoid.md +149 -0
  89. package/templates/docs/learnings/markdown-formatting-standards.md +104 -0
  90. package/templates/docs/learnings/monorepo-command-execution.md +64 -0
  91. package/templates/docs/learnings/optimization-tips.md +146 -0
  92. package/templates/docs/learnings/planning-linear-sync-workflow.md +70 -0
  93. package/templates/docs/learnings/shell-compatibility-fish.md +46 -0
  94. package/templates/docs/learnings/test-organization-structure.md +68 -0
  95. package/templates/docs/mcp-installation.md +613 -0
  96. package/templates/docs/mcp-servers.md +989 -0
  97. package/templates/docs/notification-installation.md +570 -0
  98. package/templates/docs/quick-start.md +354 -0
  99. package/templates/docs/standards/architecture-patterns.md +1064 -0
  100. package/templates/docs/standards/atomic-commits.md +513 -0
  101. package/templates/docs/standards/code-standards.md +993 -0
  102. package/templates/docs/standards/design-standards.md +656 -0
  103. package/templates/docs/standards/documentation-standards.md +1160 -0
  104. package/templates/docs/standards/testing-standards.md +969 -0
  105. package/templates/docs/system-maintenance.md +604 -0
  106. package/templates/docs/templates/PDR-template.md +561 -0
  107. package/templates/docs/templates/TODOs-template.md +534 -0
  108. package/templates/docs/templates/tech-analysis-template.md +800 -0
  109. package/templates/docs/workflows/README.md +519 -0
  110. package/templates/docs/workflows/atomic-task-protocol.md +955 -0
  111. package/templates/docs/workflows/decision-tree.md +482 -0
  112. package/templates/docs/workflows/edge-cases.md +856 -0
  113. package/templates/docs/workflows/phase-1-planning.md +957 -0
  114. package/templates/docs/workflows/phase-2-implementation.md +896 -0
  115. package/templates/docs/workflows/phase-3-validation.md +792 -0
  116. package/templates/docs/workflows/phase-4-finalization.md +927 -0
  117. package/templates/docs/workflows/quick-fix-protocol.md +505 -0
  118. package/templates/docs/workflows/task-atomization.md +537 -0
  119. package/templates/docs/workflows/task-completion-protocol.md +448 -0
  120. package/templates/hooks/on-notification.sh +28 -0
  121. package/templates/schemas/checkpoint.schema.json +97 -0
  122. package/templates/schemas/code-registry.schema.json +84 -0
  123. package/templates/schemas/pdr.schema.json +314 -0
  124. package/templates/schemas/problems.schema.json +55 -0
  125. package/templates/schemas/tech-analysis.schema.json +404 -0
  126. package/templates/schemas/telemetry.schema.json +298 -0
  127. package/templates/schemas/todos.schema.json +234 -0
  128. package/templates/schemas/workflows.schema.json +69 -0
  129. package/templates/scripts/add-changelogs.sh +105 -0
  130. package/templates/scripts/generate-code-registry.ts +270 -0
  131. package/templates/scripts/health-check.sh +343 -0
  132. package/templates/scripts/sync-registry.sh +40 -0
  133. package/templates/scripts/telemetry-report.ts +36 -0
  134. package/templates/scripts/validate-docs.sh +224 -0
  135. package/templates/scripts/validate-registry.sh +225 -0
  136. package/templates/scripts/validate-schemas.ts +283 -0
  137. package/templates/scripts/validate-structure.sh +165 -0
  138. package/templates/scripts/worktree-cleanup.sh +81 -0
  139. package/templates/scripts/worktree-create.sh +63 -0
  140. package/templates/sessions/planning/.gitkeep +0 -0
  141. package/templates/sessions/planning/archived/.gitkeep +0 -0
  142. package/templates/settings.json +202 -0
  143. package/templates/settings.local.json +138 -0
  144. package/templates/skills/README.md +197 -0
  145. package/templates/skills/_registry.json +473 -0
  146. package/templates/skills/audit/accessibility-audit.md +309 -0
  147. package/templates/skills/audit/performance-audit.md +257 -0
  148. package/templates/skills/audit/security-audit.md +217 -0
  149. package/templates/skills/auth/nextauth-patterns.md +308 -0
  150. package/templates/skills/brand-guidelines.md +240 -0
  151. package/templates/skills/documentation/markdown-formatter.md +302 -0
  152. package/templates/skills/git/git-commit-helper.md +321 -0
  153. package/templates/skills/i18n/i18n-patterns.md +251 -0
  154. package/templates/skills/patterns/error-handling-patterns.md +242 -0
  155. package/templates/skills/patterns/tdd-methodology.md +342 -0
  156. package/templates/skills/qa/qa-criteria-validator.md +383 -0
  157. package/templates/skills/qa/web-app-testing.md +398 -0
  158. package/templates/skills/react/react-hook-form-patterns.md +359 -0
  159. package/templates/skills/state/redux-toolkit-patterns.md +272 -0
  160. package/templates/skills/state/tanstack-query-patterns.md +299 -0
  161. package/templates/skills/state/zustand-patterns.md +301 -0
  162. package/templates/skills/tech/mermaid-diagram-specialist.md +195 -0
  163. package/templates/skills/tech/shadcn-specialist.md +252 -0
  164. package/templates/skills/tech/vercel-specialist.md +297 -0
  165. package/templates/skills/testing/api-app-testing.md +254 -0
  166. package/templates/skills/testing/performance-testing.md +275 -0
  167. package/templates/skills/testing/security-testing.md +348 -0
  168. package/templates/skills/utils/add-memory.md +295 -0
  169. package/templates/skills/utils/json-data-auditor.md +283 -0
  170. package/templates/skills/utils/pdf-creator-editor.md +342 -0
  171. package/templates/tools/format-markdown.sh +185 -0
@@ -0,0 +1,989 @@
1
+ # MCP Servers - Model Context Protocol Integrations
2
+
3
+ This document lists all MCP (Model Context Protocol) servers integrated into
4
+ the project and how to use them.
5
+
6
+ ---
7
+
8
+ ## What are MCP Servers?
9
+
10
+ **MCP Servers** provide extended capabilities to Claude Code by connecting to
11
+ external services and tools through a standardized protocol.
12
+
13
+ **Benefits:**
14
+
15
+ - Access to external documentation
16
+ - Integration with development tools
17
+ - Database operations
18
+ - Deployment management
19
+ - Project tracking
20
+ - Error monitoring
21
+
22
+ ---
23
+
24
+ ## Installation Status
25
+
26
+ **✅ Active:** 19/21 servers installed and configured
27
+ **⏸️ Pending:** 2 servers (DeepL, Semgrep)
28
+
29
+ ## Available MCP Servers (21)
30
+
31
+ ### 1. Context7 ✅
32
+
33
+ **Status:** Active
34
+ **Type:** HTTP
35
+ **Purpose:** Library documentation access and intelligent caching
36
+
37
+ **Capabilities:**
38
+
39
+ - Resolve library IDs for any npm package
40
+ - Get comprehensive documentation and examples
41
+ - Reduce token consumption via smart caching
42
+ - Access up-to-date API documentation
43
+
44
+ **Tools:**
45
+
46
+ ```text
47
+ mcp__context7__resolve-library-id
48
+
49
+ - Input: Package name (e.g., "hono", "drizzle-orm")
50
+ - Output: Library ID for documentation lookup
51
+
52
+ mcp__context7__get-library-docs
53
+
54
+ - Input: Library ID
55
+ - Output: Comprehensive docs with examples
56
+
57
+ ```text
58
+
59
+ **Use Cases:**
60
+
61
+ - Working with Hono framework
62
+ - Drizzle ORM queries
63
+ - React 19 features
64
+ - TanStack Router/Query/Form
65
+ - Zod validation
66
+ - Vitest testing
67
+ - Any npm package documentation
68
+
69
+ **Used By:**
70
+
71
+ - All development agents
72
+ - `dependency-mapper` agent (primary)
73
+
74
+ **Example:**
75
+
76
+ ```text
77
+
78
+ 1. Resolve: "drizzle-orm" → library_id: "drizzle-orm-latest"
79
+ 2. Get docs: library_id → Full Drizzle ORM documentation
80
+
81
+ ```text
82
+
83
+ ---
84
+
85
+ ### 2. Docker ✅
86
+
87
+ **Status:** Active
88
+ **Type:** STDIO
89
+ **Purpose:** Container management for local development
90
+
91
+ **Capabilities:**
92
+
93
+ - Start/stop/restart containers
94
+ - View container logs
95
+ - Execute commands in containers
96
+ - Inspect container status
97
+ - Manage volumes and networks
98
+
99
+ **Use Cases:**
100
+
101
+ - Start PostgreSQL database container
102
+ - View database logs
103
+ - Troubleshoot container issues
104
+ - Development environment setup
105
+
106
+ **Used By:**
107
+
108
+ - `db-drizzle-engineer` (primary)
109
+ - `deployment-engineer`
110
+ - Main agent (for setup)
111
+
112
+ **Common Commands:**
113
+
114
+ ```text
115
+ docker ps # List running containers
116
+ docker logs postgres-dev # View database logs
117
+ docker restart postgres-dev # Restart database
118
+ ```text
119
+
120
+ ---
121
+
122
+ ### 3. File System ✅
123
+
124
+ **Status:** Active
125
+ **Type:** STDIO
126
+ **Configuration:** `/home/qazuor/projects/WEBS/project`
127
+ **Purpose:** File operations across the project
128
+
129
+ **Capabilities:**
130
+
131
+ - Read files
132
+ - Write files
133
+ - Delete files
134
+ - Create directories
135
+ - Search files
136
+ - List directory contents
137
+
138
+ **Use Cases:**
139
+
140
+ - Read configuration files
141
+ - Create new files
142
+ - Update existing files
143
+ - Search for patterns in code
144
+ - General file operations
145
+
146
+ **Used By:**
147
+
148
+ - All agents (universal)
149
+
150
+ ---
151
+
152
+ ### 4. Git ✅
153
+
154
+ **Status:** Active
155
+ **Type:** STDIO
156
+ **Purpose:** Version control operations
157
+
158
+ **Capabilities:**
159
+
160
+ - View status
161
+ - View diffs
162
+ - View commit history
163
+ - View branches
164
+ - Create branches
165
+ - Stage changes (for review only)
166
+
167
+ **Use Cases:**
168
+
169
+ - Check current changes
170
+ - Review diffs before committing
171
+ - View commit history
172
+ - Branch management
173
+ - Code analysis
174
+
175
+ **Used By:**
176
+
177
+ - Main agent
178
+ - `debugger` (for history analysis)
179
+ - All reviewers
180
+
181
+ **Important:**
182
+
183
+ - **DO NOT suggest `git add` commands** - User stages manually
184
+ - Use for review and analysis only
185
+
186
+ ---
187
+
188
+ ### 5. GitHub ✅
189
+
190
+ **Status:** Active
191
+ **Type:** HTTP
192
+ **Purpose:** GitHub API integration
193
+
194
+ **Capabilities:**
195
+
196
+ - Manage issues and PRs
197
+ - View workflow runs
198
+ - Manage repository settings
199
+ - Create/update issues
200
+ - Review PR status
201
+
202
+ **Use Cases:**
203
+
204
+ - Track issues in GitHub
205
+ - Monitor CI/CD workflows
206
+ - Create issues from bugs
207
+ - Link commits to issues
208
+
209
+ **Used By:**
210
+
211
+ - `cicd-engineer` (primary)
212
+ - Main agent (for issue tracking)
213
+
214
+ ---
215
+
216
+ ### 6. Linear ✅
217
+
218
+ **Status:** Active
219
+ **Type:** HTTP
220
+ **Purpose:** Issue tracking and project management
221
+
222
+ **Capabilities:**
223
+
224
+ - Create and update issues
225
+ - Track project progress
226
+ - Manage sprints
227
+ - View issue status
228
+ - Assign issues
229
+
230
+ **Use Cases:**
231
+
232
+ - Project task tracking
233
+ - Sprint planning
234
+ - Issue management
235
+ - Progress monitoring
236
+
237
+ **Used By:**
238
+
239
+ - `product-technical` (primary)
240
+ - Main agent (for planning)
241
+
242
+ ---
243
+
244
+ ### 7. PostgreSQL ✅
245
+
246
+ **Status:** Active
247
+ **Type:** STDIO
248
+ **Configuration:** `postgresql://project_user:***@localhost:5432/project_dev`
249
+ **Purpose:** Direct database access and operations
250
+
251
+ **Capabilities:**
252
+
253
+ - Execute queries
254
+ - View schema
255
+ - Analyze query performance
256
+ - View table data
257
+ - Database debugging
258
+
259
+ **Use Cases:**
260
+
261
+ - Query optimization
262
+ - Schema inspection
263
+ - Data analysis
264
+ - Debugging database issues
265
+ - Performance profiling
266
+
267
+ **Used By:**
268
+
269
+ - `db-drizzle-engineer` (primary)
270
+ - `performance-engineer` (query optimization)
271
+ - `debugger` (data analysis)
272
+
273
+ **Environment:**
274
+
275
+ - **Development**: Local PostgreSQL in Docker
276
+ - **Production**: Neon (via Neon MCP server)
277
+
278
+ ---
279
+
280
+ ### 8. Mercado Pago ✅
281
+
282
+ **Status:** Active
283
+ **Type:** HTTP
284
+ **Configuration:** Configured with test credentials
285
+ **Purpose:** Payment processing integration (Argentina)
286
+
287
+ **Capabilities:**
288
+
289
+ - Process payments
290
+ - Handle webhooks
291
+ - Manage subscriptions
292
+ - Refund transactions
293
+ - Get payment status
294
+
295
+ **Use Cases:**
296
+
297
+ - Payment implementation
298
+ - Webhook handling
299
+ - Subscription management
300
+ - Payment debugging
301
+
302
+ **Used By:**
303
+
304
+ - Payment service developers
305
+ - `backend-reviewer` (payment code review)
306
+
307
+ **Package:**
308
+
309
+ - Implemented in `packages/payments`
310
+
311
+ ---
312
+
313
+ ### 9. Sentry ✅
314
+
315
+ **Status:** Active
316
+ **Type:** HTTP
317
+ **Purpose:** Error monitoring and tracking
318
+
319
+ **Capabilities:**
320
+
321
+ - View errors
322
+ - Track error trends
323
+ - Analyze stack traces
324
+ - View error context
325
+ - Monitor performance
326
+
327
+ **Use Cases:**
328
+
329
+ - Production error monitoring
330
+ - Error debugging
331
+ - Performance monitoring
332
+ - User impact analysis
333
+
334
+ **Used By:**
335
+
336
+ - `debugger` (primary)
337
+ - `performance-engineer`
338
+ - Main agent (production issues)
339
+
340
+ ---
341
+
342
+ ### 10. Vercel ✅
343
+
344
+ **Status:** Active
345
+ **Type:** HTTP
346
+ **Purpose:** Deployment management
347
+
348
+ **Capabilities:**
349
+
350
+ - Manage deployments
351
+ - View build logs
352
+ - Configure environment variables
353
+ - Monitor deployment status
354
+ - Rollback deployments
355
+
356
+ **Use Cases:**
357
+
358
+ - Production deployments
359
+ - Build debugging
360
+ - Environment configuration
361
+ - Deployment monitoring
362
+
363
+ **Used By:**
364
+
365
+ - `deployment-engineer` (primary)
366
+ - `cicd-engineer` (deployment pipeline)
367
+
368
+ ---
369
+
370
+ ### 11. Persistent Memory ✅
371
+
372
+ **Status:** Active
373
+ **Type:** STDIO
374
+ **Configuration:** `~/.claude/memory.jsonl`
375
+ **Purpose:** Cross-session knowledge retention
376
+
377
+ **Capabilities:**
378
+
379
+ - Remember architectural decisions
380
+ - Store learned patterns
381
+ - Retain project context
382
+ - Store user preferences
383
+ - Keep historical knowledge
384
+
385
+ **What to Remember:**
386
+
387
+ - Architectural decisions and rationale
388
+ - Recurring bugs and their solutions
389
+ - Preferred patterns and approaches
390
+ - User-specific preferences
391
+ - Project-specific conventions
392
+
393
+ **Used By:**
394
+
395
+ - Main agent (primary)
396
+ - All agents (context retention)
397
+
398
+ **Examples:**
399
+
400
+ - "We decided to use Drizzle over Prisma because..."
401
+ - "The entity search uses PostgreSQL text search"
402
+ - "User prefers TypeScript strict mode always enabled"
403
+
404
+ ---
405
+
406
+ ### 12. Chrome DevTools ✅
407
+
408
+ **Status:** Active
409
+ **Type:** STDIO
410
+ **Requirement:** Chrome with `--remote-debugging-port=9222`
411
+ **Purpose:** Browser automation and testing
412
+
413
+ **Capabilities:**
414
+
415
+ - Run E2E tests
416
+ - Take screenshots
417
+ - Validate UI rendering
418
+ - Test user interactions
419
+ - Visual regression testing
420
+
421
+ **Use Cases:**
422
+
423
+ - E2E testing
424
+ - Visual regression testing
425
+ - UI validation
426
+ - Screenshot capture for docs
427
+
428
+ **Used By:**
429
+
430
+ - `qa-engineer` (primary)
431
+ - `accessibility-engineer` (compliance testing)
432
+ - `ui-ux-designer` (visual validation)
433
+
434
+ ---
435
+
436
+ ### 13. Serena ✅
437
+
438
+ **Status:** Active
439
+ **Type:** STDIO
440
+ **Repository:** https://github.com/oraios/serena
441
+ **Configuration:** Context: `ide-assistant`, Project: `/home/qazuor/projects/WEBS/project`
442
+ **Purpose:** Semantic code analysis and intelligent context understanding
443
+
444
+ **Capabilities:**
445
+
446
+ - Semantic code search and navigation
447
+ - Context-aware code understanding
448
+ - Intelligent code suggestions
449
+ - Project structure analysis
450
+ - Cross-file relationship mapping
451
+
452
+ **Use Cases:**
453
+
454
+ - Finding related code across the codebase
455
+ - Understanding code dependencies
456
+ - Refactoring with context awareness
457
+ - Code navigation and exploration
458
+ - Architectural analysis
459
+
460
+ **Used By:**
461
+
462
+ - All development agents (enhanced context)
463
+ - `architecture-validator` (structure analysis)
464
+ - `debugger` (relationship tracing)
465
+ - Main agent (codebase understanding)
466
+
467
+ ---
468
+
469
+ ### 14. Sequential Thinking ✅
470
+
471
+ **Status:** Active
472
+ **Type:** STDIO
473
+ **Purpose:** Complex problem solving with step-by-step reasoning
474
+
475
+ **Capabilities:**
476
+
477
+ - Break down complex problems
478
+ - Reason through multi-step solutions
479
+ - Analyze dependencies
480
+ - Chain of thought reasoning
481
+ - Decision tree analysis
482
+
483
+ **Use Cases:**
484
+
485
+ - Complex debugging
486
+ - Architectural decisions
487
+ - Planning complex features
488
+ - Root cause analysis
489
+ - Multi-step problem solving
490
+
491
+ **Used By:**
492
+
493
+ - Main agent (complex decisions)
494
+ - `debugger` (complex bugs)
495
+ - `architecture-validator` (design decisions)
496
+ - `product-technical` (complex planning)
497
+
498
+ **When to Use:**
499
+
500
+ - Problems with multiple interdependencies
501
+ - Architectural decisions with many tradeoffs
502
+ - Complex debugging scenarios
503
+ - Multi-step refactoring
504
+ - Planning complex features
505
+
506
+ ---
507
+
508
+ ### 15. Neon ✅
509
+
510
+ **Status:** Active
511
+ **Type:** HTTP
512
+ **Configuration:** Configured with Neon API key
513
+ **Purpose:** Production database management (Neon.tech)
514
+
515
+ **Capabilities:**
516
+
517
+ - Manage production database
518
+ - View metrics
519
+ - Execute queries safely
520
+ - Monitor performance
521
+ - Backup management
522
+
523
+ **Use Cases:**
524
+
525
+ - Production database operations
526
+ - Performance monitoring
527
+ - Production debugging (read-only)
528
+ - Backup verification
529
+
530
+ **Used By:**
531
+
532
+ - `db-drizzle-engineer` (primary)
533
+ - `performance-engineer` (query optimization)
534
+ - `deployment-engineer` (production setup)
535
+
536
+ **Environment:**
537
+
538
+ - **Production only** (not for development)
539
+ - Development uses local PostgreSQL
540
+
541
+ **Important:**
542
+
543
+ - Always be cautious with production database
544
+ - Prefer read-only operations
545
+ - Coordinate with user before writes
546
+
547
+ ---
548
+
549
+ ### 16. Socket ✅
550
+
551
+ **Status:** Active
552
+ **Type:** HTTP
553
+ **Purpose:** Dependency security analysis and vulnerability detection
554
+
555
+ **Capabilities:**
556
+
557
+ - Scan package.json for vulnerabilities
558
+ - Detect malicious packages
559
+ - Analyze dependency security
560
+ - Track supply chain risks
561
+ - Monitor open source security
562
+
563
+ **Use Cases:**
564
+
565
+ - Security audits
566
+ - Dependency updates
567
+ - Vulnerability detection
568
+ - Supply chain analysis
569
+ - Security compliance
570
+
571
+ **Used By:**
572
+
573
+ - `security-engineer` (primary)
574
+ - `backend-reviewer` (dependency review)
575
+ - Main agent (security checks)
576
+
577
+ ---
578
+
579
+ ### 17. Cloudflare Docs ✅
580
+
581
+ **Status:** Active
582
+ **Type:** HTTP
583
+ **Purpose:** Cloudflare integration and documentation
584
+
585
+ **Capabilities:**
586
+
587
+ - Access Cloudflare API documentation
588
+ - Manage Cloudflare resources
589
+ - Configure CDN and DNS
590
+ - Access Workers documentation
591
+ - R2 storage integration
592
+
593
+ **Use Cases:**
594
+
595
+ - CDN configuration
596
+ - Edge computing setup
597
+ - DNS management
598
+ - Static asset optimization
599
+ - Workers deployment
600
+
601
+ **Used By:**
602
+
603
+ - `deployment-engineer` (primary)
604
+ - `performance-engineer` (CDN optimization)
605
+
606
+ ---
607
+
608
+ ### 18. BrowserStack ✅
609
+
610
+ **Status:** Active
611
+ **Type:** STDIO
612
+ **Configuration:** Configured with BrowserStack credentials
613
+ **Purpose:** Real browser testing and automation
614
+
615
+ **Capabilities:**
616
+
617
+ - Run E2E tests on real browsers
618
+ - Cross-browser compatibility testing
619
+ - Mobile device testing
620
+ - Screenshot capture
621
+ - Automated testing workflows
622
+
623
+ **Use Cases:**
624
+
625
+ - Cross-browser testing
626
+ - Mobile responsiveness testing
627
+ - Visual regression testing
628
+ - Browser compatibility verification
629
+ - Real device testing
630
+
631
+ **Used By:**
632
+
633
+ - `qa-engineer` (primary)
634
+ - `accessibility-engineer` (browser compliance)
635
+ - `ui-ux-designer` (cross-browser validation)
636
+
637
+ **Requirements:**
638
+
639
+ - BrowserStack account
640
+ - Internet access for test execution
641
+ - View test logs at https://www.browserstack.com/automate
642
+
643
+ ---
644
+
645
+ ### 19. DeepL ⏸️
646
+
647
+ **Status:** Pending installation
648
+ **Type:** HTTP
649
+ **Purpose:** Translation and internationalization workflows
650
+
651
+ **Capabilities:**
652
+
653
+ - High-quality text translation
654
+ - Batch translation support
655
+ - Multiple language support
656
+ - Context-aware translations
657
+ - i18n file processing
658
+
659
+ **Use Cases:**
660
+
661
+ - Translating UI strings
662
+ - i18n file localization
663
+ - Content translation
664
+ - Multi-language support
665
+ - Documentation translation
666
+
667
+ **Used By:**
668
+
669
+ - `i18n-specialist` (primary)
670
+ - `tech-writer` (documentation translation)
671
+
672
+ **Installation Required:**
673
+
674
+ ```bash
675
+ # Get API key from: https://www.deepl.com/pro-api
676
+ claude mcp add --transport http deepl https://mcp.deepl.com/mcp --header "Authorization: Bearer <YOUR_DEEPL_API_KEY>"
677
+ ```
678
+
679
+ **Free Tier:** 500,000 characters/month
680
+
681
+ ---
682
+
683
+ ### 20. Semgrep ⏸️
684
+
685
+ **Status:** Pending installation
686
+ **Type:** STDIO
687
+ **Purpose:** Static code security analysis
688
+
689
+ **Capabilities:**
690
+
691
+ - Scan code for vulnerabilities
692
+ - Detect security anti-patterns
693
+ - Find secrets in code
694
+ - Custom rule creation
695
+ - Multi-language support
696
+
697
+ **Use Cases:**
698
+
699
+ - Security audits
700
+ - Vulnerability scanning
701
+ - Secret detection
702
+ - Code quality checks
703
+ - Security compliance
704
+
705
+ **Used By:**
706
+
707
+ - `security-engineer` (primary)
708
+ - `backend-reviewer` (security review)
709
+ - `code-check` command
710
+
711
+ **Installation Required:**
712
+
713
+ ```bash
714
+ # Option 1: Install with pipx
715
+ sudo apt install pipx
716
+ pipx install semgrep
717
+ semgrep login
718
+
719
+ # Option 2: Use virtual environment
720
+ python3 -m venv ~/.venvs/semgrep
721
+ ~/.venvs/semgrep/bin/pip install semgrep
722
+ ~/.venvs/semgrep/bin/semgrep login
723
+
724
+ # Then install MCP server
725
+ claude mcp add-json semgrep '{"type":"stdio","command":"semgrep","args":["mcp"]}'
726
+ ```
727
+
728
+ ---
729
+
730
+ ## MCP Server Usage by Phase
731
+
732
+ ### Phase 1: Planning
733
+
734
+ - `Linear` - Issue tracking
735
+ - `Sequential Thinking` - Complex planning
736
+ - `Persistent Memory` - Remember decisions
737
+
738
+ ### Phase 2: Implementation
739
+
740
+ - `Context7` - Library documentation
741
+ - `File System` - File operations
742
+ - `Git` - Version control
743
+ - `Docker` - Database containers
744
+ - `PostgreSQL` - Database operations
745
+ - `Serena` - Semantic code analysis
746
+ - `Mercado Pago` - Payment integration
747
+
748
+ ### Phase 3: Validation
749
+
750
+ - `Chrome DevTools` - E2E testing
751
+ - `BrowserStack` - Cross-browser testing
752
+ - `Sentry` - Error checking
753
+ - `PostgreSQL` - Query validation
754
+ - `Socket` - Security scanning
755
+ - `Semgrep` - Code security analysis (when installed)
756
+
757
+ ### Phase 4: Finalization
758
+
759
+ - `GitHub` - Issue linking
760
+ - `Vercel` - Deployment
761
+ - `Cloudflare Docs` - CDN configuration
762
+ - `Neon` - Production database
763
+
764
+ ### Ongoing
765
+
766
+ - `Persistent Memory` - Cross-session learning
767
+ - `Sequential Thinking` - Problem solving
768
+ - `Serena` - Code understanding
769
+
770
+ ---
771
+
772
+ ## MCP Server Usage by Agent
773
+
774
+ ### Development Agents
775
+
776
+ - `Context7` - All dev agents
777
+ - `File System` - All dev agents
778
+ - `Git` - All dev agents
779
+
780
+ ### Database Engineers
781
+
782
+ - `PostgreSQL` (dev)
783
+ - `Neon` (production)
784
+ - `Docker` (containers)
785
+
786
+ ### DevOps Engineers
787
+
788
+ - `Docker` (containers)
789
+ - `Vercel` (deployment)
790
+ - `GitHub` (CI/CD)
791
+
792
+ ### QA Engineers
793
+
794
+ - `Chrome DevTools` (testing)
795
+ - `BrowserStack` (cross-browser testing)
796
+ - `Sentry` (error monitoring)
797
+
798
+ ### Security Engineers
799
+
800
+ - `Socket` (dependency security)
801
+ - `Semgrep` (code security - when installed)
802
+ - `Sentry` (security monitoring)
803
+
804
+ ### Product/Planning
805
+
806
+ - `Linear` (issue tracking)
807
+ - `Sequential Thinking` (planning)
808
+
809
+ ### Payment & i18n Specialists
810
+
811
+ - `Mercado Pago` (payment processing)
812
+ - `DeepL` (translation - when installed)
813
+
814
+ ### Main Agent
815
+
816
+ - `Persistent Memory` (learning)
817
+ - `Sequential Thinking` (decisions)
818
+ - `Serena` (code understanding)
819
+ - All servers (coordination)
820
+
821
+ ---
822
+
823
+ ## Best Practices
824
+
825
+ ### Context7 Usage
826
+
827
+ - Always use for library documentation
828
+ - Saves tokens vs searching web
829
+ - More accurate than training data
830
+ - Use for any npm package
831
+
832
+ ### Database Access
833
+
834
+ - Development: Use `PostgreSQL` MCP
835
+ - Production: Use `Neon` MCP
836
+ - Always be cautious with production
837
+ - Prefer read-only queries in production
838
+
839
+ ### Git Operations
840
+
841
+ - Use for review and analysis
842
+ - **Never suggest `git add`** commands
843
+ - User stages files manually
844
+
845
+ ### Persistent Memory
846
+
847
+ - Store important decisions
848
+ - Remember user preferences
849
+ - Keep architectural rationale
850
+ - Update regularly
851
+
852
+ ### Sequential Thinking
853
+
854
+ - Use for complex problems
855
+ - Break down multi-step issues
856
+ - Document reasoning chain
857
+ - Present clear conclusions
858
+
859
+ ### Serena
860
+
861
+ - Use for semantic code search
862
+ - Leverage for architectural analysis
863
+ - Helpful for refactoring decisions
864
+ - Great for understanding code relationships
865
+
866
+ ### Socket & Semgrep
867
+
868
+ - Run security scans regularly
869
+ - Review dependencies before updates
870
+ - Check for vulnerabilities in new packages
871
+ - Integrate into quality checks
872
+
873
+ ### BrowserStack
874
+
875
+ - Test on real browsers before deployment
876
+ - Verify cross-browser compatibility
877
+ - Check mobile responsiveness
878
+ - Document browser-specific issues
879
+
880
+ ### Chrome DevTools
881
+
882
+ - Start Chrome with debugging flag first
883
+ - Use for local E2E testing
884
+ - Combine with automated test suites
885
+ - Capture screenshots for bug reports
886
+
887
+ ### Mercado Pago
888
+
889
+ - Use test credentials in development
890
+ - Test webhooks thoroughly
891
+ - Handle errors gracefully
892
+ - Document payment flows
893
+
894
+ ---
895
+
896
+ ## Quick Installation Guide
897
+
898
+ ### Active Servers (19)
899
+
900
+ All currently installed and ready to use:
901
+
902
+ - ✅ Context7, Linear, GitHub, Sentry, Vercel, Neon, Socket, Cloudflare Docs,
903
+ Mercado Pago (HTTP)
904
+ - ✅ Docker, FileSystem, Git, PostgreSQL, Memory, Serena, Sequential Thinking,
905
+ Chrome DevTools, BrowserStack (STDIO)
906
+
907
+ ### Pending Installation (2)
908
+
909
+ **DeepL** - Translation service
910
+
911
+ ```bash
912
+ # Get free API key: https://www.deepl.com/pro-api
913
+ claude mcp add --transport http deepl https://mcp.deepl.com/mcp \
914
+ --header "Authorization: Bearer <YOUR_API_KEY>"
915
+ ```
916
+
917
+ **Semgrep** - Security scanning
918
+
919
+ ```bash
920
+ # Install semgrep first
921
+ sudo apt install pipx && pipx install semgrep && semgrep login
922
+ # Then add MCP server
923
+ claude mcp add-json semgrep '{"type":"stdio","command":"semgrep","args":["mcp"]}'
924
+ ```
925
+
926
+ ---
927
+
928
+ ## Troubleshooting MCP Servers
929
+
930
+ ### Server Not Available
931
+
932
+ - Check if server is enabled in settings
933
+ - Verify network connectivity
934
+ - Check server configuration
935
+
936
+ ### Authentication Errors
937
+
938
+ - Verify API keys/tokens
939
+ - Check environment variables
940
+ - Ensure proper permissions
941
+
942
+ ### Rate Limiting
943
+
944
+ - Context7: Intelligent caching helps
945
+ - GitHub: Be mindful of API limits
946
+ - Neon: Monitor query frequency
947
+
948
+ ---
949
+
950
+ ## Server Status Summary
951
+
952
+ **Total Servers:** 20 configured (19 active + 2 pending)
953
+
954
+ **Active HTTP Servers (9):**
955
+
956
+ 1. Context7 ✅
957
+ 2. Linear ✅
958
+ 3. GitHub ✅
959
+ 4. Mercado Pago ✅
960
+ 5. Sentry ✅
961
+ 6. Vercel ✅
962
+ 7. Neon ✅
963
+ 8. Socket ✅
964
+ 9. Cloudflare Docs ✅
965
+
966
+ **Active STDIO Servers (10):**
967
+
968
+ 1. Docker ✅
969
+ 2. FileSystem ✅
970
+ 3. Git ✅
971
+ 4. PostgreSQL ✅
972
+ 5. Memory ✅
973
+ 6. Serena ✅
974
+ 7. Sequential Thinking ✅
975
+ 8. Chrome DevTools ✅
976
+ 9. BrowserStack ✅
977
+
978
+ **Pending (2):**
979
+
980
+ 1. DeepL ⏸️ (requires API key)
981
+ 2. Semgrep ⏸️ (requires installation)
982
+
983
+ ---
984
+
985
+ **Note:** MCP server availability and configuration is managed in Claude Code
986
+ settings. If a server is unavailable, inform the user and suggest enabling it in
987
+ the tools menu.
988
+
989
+ **Last Updated:** 2025-10-28 (19/21 servers active)