level-up-mcp-server-cn 0.4.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 (137) hide show
  1. package/.claude/projects/c--Users-klexi-OneDrive-Desktop-Levelup-level-up-mcp-server/memory/project_testing_service.md +11 -0
  2. package/.claude/settings.local.json +10 -0
  3. package/.env.example +19 -0
  4. package/CLAUDE.md +222 -0
  5. package/CODE_REVIEW.md +282 -0
  6. package/LICENSE +64 -0
  7. package/README.md +198 -0
  8. package/dist/constants.d.ts +33 -0
  9. package/dist/constants.js +78 -0
  10. package/dist/constants.js.map +1 -0
  11. package/dist/data/quest-seeds.d.ts +18 -0
  12. package/dist/data/quest-seeds.js +380 -0
  13. package/dist/data/quest-seeds.js.map +1 -0
  14. package/dist/index.d.ts +3 -0
  15. package/dist/index.js +260 -0
  16. package/dist/index.js.map +1 -0
  17. package/dist/schemas/common.d.ts +33 -0
  18. package/dist/schemas/common.js +96 -0
  19. package/dist/schemas/common.js.map +1 -0
  20. package/dist/services/dispatcher.d.ts +27 -0
  21. package/dist/services/dispatcher.js +47 -0
  22. package/dist/services/dispatcher.js.map +1 -0
  23. package/dist/services/errors.d.ts +56 -0
  24. package/dist/services/errors.js +99 -0
  25. package/dist/services/errors.js.map +1 -0
  26. package/dist/services/format.d.ts +74 -0
  27. package/dist/services/format.js +144 -0
  28. package/dist/services/format.js.map +1 -0
  29. package/dist/services/ownership.d.ts +19 -0
  30. package/dist/services/ownership.js +79 -0
  31. package/dist/services/ownership.js.map +1 -0
  32. package/dist/services/quality-gate.d.ts +45 -0
  33. package/dist/services/quality-gate.js +131 -0
  34. package/dist/services/quality-gate.js.map +1 -0
  35. package/dist/services/rate-limit.d.ts +12 -0
  36. package/dist/services/rate-limit.js +49 -0
  37. package/dist/services/rate-limit.js.map +1 -0
  38. package/dist/services/register.d.ts +49 -0
  39. package/dist/services/register.js +63 -0
  40. package/dist/services/register.js.map +1 -0
  41. package/dist/services/supabase.d.ts +10 -0
  42. package/dist/services/supabase.js +79 -0
  43. package/dist/services/supabase.js.map +1 -0
  44. package/dist/tools/achievements.d.ts +6 -0
  45. package/dist/tools/achievements.js +242 -0
  46. package/dist/tools/achievements.js.map +1 -0
  47. package/dist/tools/admin.d.ts +16 -0
  48. package/dist/tools/admin.js +328 -0
  49. package/dist/tools/admin.js.map +1 -0
  50. package/dist/tools/agents.d.ts +3 -0
  51. package/dist/tools/agents.js +400 -0
  52. package/dist/tools/agents.js.map +1 -0
  53. package/dist/tools/bootstrap.d.ts +17 -0
  54. package/dist/tools/bootstrap.js +565 -0
  55. package/dist/tools/bootstrap.js.map +1 -0
  56. package/dist/tools/dispatchers/admin.d.ts +3 -0
  57. package/dist/tools/dispatchers/admin.js +50 -0
  58. package/dist/tools/dispatchers/admin.js.map +1 -0
  59. package/dist/tools/dispatchers/eval.d.ts +3 -0
  60. package/dist/tools/dispatchers/eval.js +40 -0
  61. package/dist/tools/dispatchers/eval.js.map +1 -0
  62. package/dist/tools/dispatchers/quests.d.ts +3 -0
  63. package/dist/tools/dispatchers/quests.js +60 -0
  64. package/dist/tools/dispatchers/quests.js.map +1 -0
  65. package/dist/tools/dispatchers/session.d.ts +3 -0
  66. package/dist/tools/dispatchers/session.js +38 -0
  67. package/dist/tools/dispatchers/session.js.map +1 -0
  68. package/dist/tools/dispatchers/skills.d.ts +3 -0
  69. package/dist/tools/dispatchers/skills.js +49 -0
  70. package/dist/tools/dispatchers/skills.js.map +1 -0
  71. package/dist/tools/dispatchers/tasks.d.ts +3 -0
  72. package/dist/tools/dispatchers/tasks.js +53 -0
  73. package/dist/tools/dispatchers/tasks.js.map +1 -0
  74. package/dist/tools/dispatchers/users.d.ts +3 -0
  75. package/dist/tools/dispatchers/users.js +65 -0
  76. package/dist/tools/dispatchers/users.js.map +1 -0
  77. package/dist/tools/dispatchers/xp.d.ts +3 -0
  78. package/dist/tools/dispatchers/xp.js +51 -0
  79. package/dist/tools/dispatchers/xp.js.map +1 -0
  80. package/dist/tools/growth-plan.d.ts +5 -0
  81. package/dist/tools/growth-plan.js +791 -0
  82. package/dist/tools/growth-plan.js.map +1 -0
  83. package/dist/tools/leaderboards.d.ts +10 -0
  84. package/dist/tools/leaderboards.js +279 -0
  85. package/dist/tools/leaderboards.js.map +1 -0
  86. package/dist/tools/leveling.d.ts +24 -0
  87. package/dist/tools/leveling.js +356 -0
  88. package/dist/tools/leveling.js.map +1 -0
  89. package/dist/tools/metrics.d.ts +3 -0
  90. package/dist/tools/metrics.js +247 -0
  91. package/dist/tools/metrics.js.map +1 -0
  92. package/dist/tools/quests.d.ts +5 -0
  93. package/dist/tools/quests.js +586 -0
  94. package/dist/tools/quests.js.map +1 -0
  95. package/dist/tools/ratings.d.ts +11 -0
  96. package/dist/tools/ratings.js +564 -0
  97. package/dist/tools/ratings.js.map +1 -0
  98. package/dist/tools/skills.d.ts +66 -0
  99. package/dist/tools/skills.js +1112 -0
  100. package/dist/tools/skills.js.map +1 -0
  101. package/dist/tools/system.d.ts +31 -0
  102. package/dist/tools/system.js +605 -0
  103. package/dist/tools/system.js.map +1 -0
  104. package/dist/tools/tasks.d.ts +73 -0
  105. package/dist/tools/tasks.js +1572 -0
  106. package/dist/tools/tasks.js.map +1 -0
  107. package/dist/tools/users.d.ts +97 -0
  108. package/dist/tools/users.js +1306 -0
  109. package/dist/tools/users.js.map +1 -0
  110. package/dist/tools/xp.d.ts +38 -0
  111. package/dist/tools/xp.js +670 -0
  112. package/dist/tools/xp.js.map +1 -0
  113. package/dist/types.d.ts +178 -0
  114. package/dist/types.js +12 -0
  115. package/dist/types.js.map +1 -0
  116. package/docs/recommended-skillsets.md +622 -0
  117. package/docs/skills-and-abilities-review.md +672 -0
  118. package/docs/v0.3-roadmap.md +191 -0
  119. package/package.json +35 -0
  120. package/sql/agent_pending_installs.sql +28 -0
  121. package/sql/award_class_xp.sql +81 -0
  122. package/supabase/.temp/cli-latest +1 -0
  123. package/supabase/.temp/gotrue-version +1 -0
  124. package/supabase/.temp/pooler-url +1 -0
  125. package/supabase/.temp/postgres-version +1 -0
  126. package/supabase/.temp/project-ref +1 -0
  127. package/supabase/.temp/rest-version +1 -0
  128. package/supabase/.temp/storage-migration +1 -0
  129. package/supabase/.temp/storage-version +1 -0
  130. package/supabase/migrations/20260314000000_anon_rls_policies.sql +311 -0
  131. package/supabase/migrations/20260314000001_ownership_rpcs.sql +382 -0
  132. package/supabase/migrations/20260314000002_evidence_and_growth_plan.sql +97 -0
  133. package/supabase/migrations/20260317000000_seed_quests.sql +62 -0
  134. package/supabase/migrations/20260317000001_star_cooldown_and_fixes.sql +16 -0
  135. package/supabase/migrations/20260318000000_restore_rank_names.sql +25 -0
  136. package/supabase/migrations/20260320000000_chinese_rank_names.sql +24 -0
  137. package/vitest.config.ts +11 -0
@@ -0,0 +1,622 @@
1
+ # Recommended Skillsets & MCP Tools by Ability
2
+
3
+ This document maps each ability category to recommended **MCPs** (tools) and **Skills** (knowledge/prompts) that agents should install to become competent in that domain. These serve as "best practice" loadouts — agents following growth plans can use this as a progression guide.
4
+
5
+ > **What's the difference?**
6
+ > - **MCPs** = tools that let agents *do* things (read files, search web, deploy code)
7
+ > - **Skills** = prompts/instructions that teach agents *how* to do things well (best practices, patterns, workflows)
8
+
9
+ > **Trust tiers** (applies to both MCPs and Skills):
10
+ > - **Official** = Published by the platform owner (e.g., github/github-mcp-server, anthropics/skills)
11
+ > - **Reference** = Published by the MCP org (modelcontextprotocol/servers)
12
+ > - **Verified Community** = Community-built, 500+ stars, actively maintained
13
+ > - **Community** = Community-built, under 500 stars — use with caution
14
+
15
+ ### Skill Sources
16
+
17
+ | Source | Publisher | Stars | What It Is |
18
+ |--------|-----------|-------|------------|
19
+ | [anthropics/skills](https://github.com/anthropics/skills) | Anthropic | 93K | Official SKILL.md format — 17 production skills |
20
+ | [github/awesome-copilot/skills](https://github.com/github/awesome-copilot/tree/main/skills) | GitHub | 25K | 222 community skills for Copilot (compatible with any agent) |
21
+
22
+ ---
23
+
24
+ ## 1. Software Engineering
25
+
26
+ **Core skills:** Code writing, debugging, refactoring, architecture design
27
+
28
+ ### MCPs (Tools)
29
+
30
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
31
+ |------------|---------|------|-------|---------------|
32
+ | Filesystem MCP | Read/write/edit project files | [modelcontextprotocol/servers/src/filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | Reference | Scope to project directory only — never allow root or home access |
33
+ | Git MCP | Branch, commit, diff, merge | [modelcontextprotocol/servers/src/git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) | Reference | Always review diffs before committing; avoid force-push |
34
+ | GitHub MCP | PRs, issues, code review, CI | [github/github-mcp-server](https://github.com/github/github-mcp-server) | Official (28K stars) | Use fine-grained PAT with minimal scopes; never commit tokens |
35
+ | Sequential Thinking | Multi-step reasoning for architecture | [modelcontextprotocol/servers/src/sequentialthinking](https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking) | Reference | Use for complex multi-step problems, not simple lookups |
36
+ | Desktop Commander | Terminal commands, process management | [wonderwhy-er/DesktopCommanderMCP](https://github.com/wonderwhy-er/DesktopCommanderMCP) | Verified Community (5.7K stars) | Restrict to project directory; avoid destructive system commands |
37
+
38
+ ### Skills (Knowledge)
39
+
40
+ | Skill | What It Teaches | Source | Best Practice |
41
+ |-------|----------------|--------|---------------|
42
+ | [refactor](https://github.com/github/awesome-copilot/tree/main/skills/refactor) | Safe refactoring patterns, extract methods, reduce complexity | GitHub | Apply incrementally; run tests after each refactoring step |
43
+ | [refactor-plan](https://github.com/github/awesome-copilot/tree/main/skills/refactor-plan) | Plan multi-step refactoring before executing | GitHub | Create plan first, get approval, then execute |
44
+ | [review-and-refactor](https://github.com/github/awesome-copilot/tree/main/skills/review-and-refactor) | Code review + improvement in one pass | GitHub | Focus on readability and correctness, not style preferences |
45
+ | [conventional-commit](https://github.com/github/awesome-copilot/tree/main/skills/conventional-commit) | Structured commit messages (feat/fix/chore) | GitHub | Follow project's existing convention; keep messages concise |
46
+ | [git-commit](https://github.com/github/awesome-copilot/tree/main/skills/git-commit) | Smart commit message generation from diffs | GitHub | Review generated message before committing |
47
+ | [architecture-blueprint-generator](https://github.com/github/awesome-copilot/tree/main/skills/architecture-blueprint-generator) | Generate architecture docs from codebase analysis | GitHub | Update blueprints when architecture changes |
48
+ | [create-implementation-plan](https://github.com/github/awesome-copilot/tree/main/skills/create-implementation-plan) | Break features into actionable implementation steps | GitHub | Validate plan with stakeholders before coding |
49
+ | [mcp-builder](https://github.com/anthropics/skills/tree/main/skills/mcp-builder) | Build MCP servers from scratch | Anthropic | Follow MCP spec; test with MCP inspector |
50
+ | [skill-creator](https://github.com/anthropics/skills/tree/main/skills/skill-creator) | Create new SKILL.md files | Anthropic | Include examples and edge cases in skill definitions |
51
+
52
+ **Progression:** Filesystem + Git → GitHub → Sequential Thinking → Desktop Commander
53
+
54
+ ---
55
+
56
+ ## 2. Web Development
57
+
58
+ **Core skills:** Frontend/backend, HTML/CSS/JS, frameworks, APIs
59
+
60
+ ### MCPs (Tools)
61
+
62
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
63
+ |------------|---------|------|-------|---------------|
64
+ | Filesystem MCP | Project file management | [modelcontextprotocol/servers/src/filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | Reference | Scope to project directory only |
65
+ | Playwright MCP | Browser automation, E2E testing | [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) | Official (29K stars) | Use accessibility snapshots over screenshots for speed |
66
+ | Fetch MCP | HTTP requests, API testing | [modelcontextprotocol/servers/src/fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) | Reference | Set reasonable timeouts; don't fetch untrusted URLs blindly |
67
+ | Brave Search MCP | Search docs, APIs, debug errors | [brave/brave-search-mcp-server](https://github.com/brave/brave-search-mcp-server) | Official (775 stars) | Requires API key from brave.com/search/api |
68
+ | Firecrawl MCP | Deep site crawling, scraping | [firecrawl/firecrawl-mcp-server](https://github.com/firecrawl/firecrawl-mcp-server) | Official (5.8K stars) | Respect robots.txt; use for owned/permitted sites |
69
+
70
+ ### Skills (Knowledge)
71
+
72
+ | Skill | What It Teaches | Source | Best Practice |
73
+ |-------|----------------|--------|---------------|
74
+ | [frontend-design](https://github.com/anthropics/skills/tree/main/skills/frontend-design) | Frontend UI design patterns and implementation | Anthropic | Match design system; test responsive breakpoints |
75
+ | [web-artifacts-builder](https://github.com/anthropics/skills/tree/main/skills/web-artifacts-builder) | Build interactive web components | Anthropic | Keep components modular; handle loading/error states |
76
+ | [webapp-testing](https://github.com/anthropics/skills/tree/main/skills/webapp-testing) | Web application testing strategies | Anthropic | Test user flows, not implementation details |
77
+ | [web-coder](https://github.com/github/awesome-copilot/tree/main/skills/web-coder) | Full-stack web development patterns | GitHub | Follow framework conventions; validate inputs server-side |
78
+ | [web-design-reviewer](https://github.com/github/awesome-copilot/tree/main/skills/web-design-reviewer) | Review and critique web designs | GitHub | Focus on usability and accessibility, not aesthetics |
79
+ | [playwright-generate-test](https://github.com/github/awesome-copilot/tree/main/skills/playwright-generate-test) | Generate Playwright E2E tests | GitHub | Use data-testid selectors; avoid brittle CSS selectors |
80
+ | [playwright-explore-website](https://github.com/github/awesome-copilot/tree/main/skills/playwright-explore-website) | Navigate and analyze websites programmatically | GitHub | Set timeouts; handle dynamic content loading |
81
+ | [openapi-to-application-code](https://github.com/github/awesome-copilot/tree/main/skills/openapi-to-application-code) | Generate app code from OpenAPI specs | GitHub | Validate generated code against spec; add error handling |
82
+
83
+ **Progression:** Filesystem + Fetch → Playwright → Brave Search → Firecrawl
84
+
85
+ ---
86
+
87
+ ## 3. Data Analysis
88
+
89
+ **Core skills:** SQL, data wrangling, statistics, visualization
90
+
91
+ ### MCPs (Tools)
92
+
93
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
94
+ |------------|---------|------|-------|---------------|
95
+ | Filesystem MCP | Read/write CSV, JSON, data files | [modelcontextprotocol/servers/src/filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | Reference | Validate data before writing; back up before transforms |
96
+ | Memory MCP | Track analysis context across sessions | [modelcontextprotocol/servers/src/memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) | Reference | Use for persistent context, not as primary data store |
97
+ | Brave Search MCP | Research datasets, methodologies | [brave/brave-search-mcp-server](https://github.com/brave/brave-search-mcp-server) | Official (775 stars) | Cross-reference multiple sources for accuracy |
98
+ | Chroma MCP | Vector database for embeddings | [chroma-core/chroma-mcp](https://github.com/chroma-core/chroma-mcp) | Official (515 stars) | Use for semantic search; keep collections scoped to project |
99
+
100
+ ### Skills (Knowledge)
101
+
102
+ | Skill | What It Teaches | Source | Best Practice |
103
+ |-------|----------------|--------|---------------|
104
+ | [xlsx](https://github.com/anthropics/skills/tree/main/skills/xlsx) | Excel spreadsheet creation, formulas, charts | Anthropic | Validate formulas; use named ranges for clarity |
105
+ | [datanalysis-credit-risk](https://github.com/github/awesome-copilot/tree/main/skills/datanalysis-credit-risk) | Credit risk data analysis patterns | GitHub | Good template for structured data analysis workflow |
106
+ | [bigquery-pipeline-audit](https://github.com/github/awesome-copilot/tree/main/skills/bigquery-pipeline-audit) | Audit and optimize data pipelines | GitHub | Check for data quality issues before optimization |
107
+ | [sql-optimization](https://github.com/github/awesome-copilot/tree/main/skills/sql-optimization) | SQL query performance tuning | GitHub | Profile queries with EXPLAIN before optimizing |
108
+ | [sql-code-review](https://github.com/github/awesome-copilot/tree/main/skills/sql-code-review) | Review SQL for correctness and performance | GitHub | Check for N+1 queries, missing indexes, injection risks |
109
+ | [powerbi-modeling](https://github.com/github/awesome-copilot/tree/main/skills/powerbi-modeling) | Power BI data modeling best practices | GitHub | Use star schema; minimize calculated columns |
110
+
111
+ **Progression:** Filesystem → Memory → Brave Search → Chroma
112
+
113
+ **Note:** PostgreSQL and SQLite MCP servers are archived from the reference repo. See [modelcontextprotocol/servers-archived](https://github.com/modelcontextprotocol/servers-archived) for historical implementations. Use database-specific sections below for current alternatives.
114
+
115
+ ---
116
+
117
+ ## 4. DevOps & Infrastructure
118
+
119
+ **Core skills:** CI/CD, deployment, monitoring, IaC
120
+
121
+ ### MCPs (Tools)
122
+
123
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
124
+ |------------|---------|------|-------|---------------|
125
+ | GitHub MCP | CI/CD via GitHub Actions | [github/github-mcp-server](https://github.com/github/github-mcp-server) | Official (28K stars) | Review workflow changes before merge; use environment protection rules |
126
+ | Terraform MCP | Infrastructure as code | [hashicorp/terraform-mcp-server](https://github.com/hashicorp/terraform-mcp-server) | Official (1.3K stars) | Always run plan before apply; use workspaces for isolation |
127
+ | AWS MCP Servers | Lambda, S3, cloud services | [awslabs/mcp](https://github.com/awslabs/mcp) | Official (8.5K stars) | Use least-privilege IAM roles; never hardcode credentials |
128
+ | Cloudflare MCP | Workers, edge, CDN, DNS | [cloudflare/mcp-server-cloudflare](https://github.com/cloudflare/mcp-server-cloudflare) | Official (3.5K stars) | Test Workers locally before deploying to production |
129
+ | Grafana MCP | Observability dashboards, alerts | [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) | Official (2.5K stars) | Read-only access recommended for agents; avoid modifying alerts |
130
+ | Docker MCP Gateway | Container management | [docker/mcp-gateway](https://github.com/docker/mcp-gateway) | Official (1.3K stars) | Don't expose Docker socket to untrusted agents |
131
+
132
+ ### Skills (Knowledge)
133
+
134
+ | Skill | What It Teaches | Source | Best Practice |
135
+ |-------|----------------|--------|---------------|
136
+ | [devops-rollout-plan](https://github.com/github/awesome-copilot/tree/main/skills/devops-rollout-plan) | Plan safe production rollouts | GitHub | Include rollback steps; use canary deployments |
137
+ | [multi-stage-dockerfile](https://github.com/github/awesome-copilot/tree/main/skills/multi-stage-dockerfile) | Optimize Docker images with multi-stage builds | GitHub | Minimize image size; exclude dev dependencies |
138
+ | [create-github-action-workflow-specification](https://github.com/github/awesome-copilot/tree/main/skills/create-github-action-workflow-specification) | Design GitHub Actions workflows | GitHub | Pin action versions; use secrets for credentials |
139
+ | [import-infrastructure-as-code](https://github.com/github/awesome-copilot/tree/main/skills/import-infrastructure-as-code) | Import existing infra into IaC | GitHub | Audit imported state; resolve drift before changes |
140
+ | [azure-deployment-preflight](https://github.com/github/awesome-copilot/tree/main/skills/azure-deployment-preflight) | Pre-deployment validation checks | GitHub | Catch config issues before they hit production |
141
+ | [az-cost-optimize](https://github.com/github/awesome-copilot/tree/main/skills/az-cost-optimize) | Cloud cost optimization strategies | GitHub | Review costs weekly; right-size resources |
142
+ | [cloud-design-patterns](https://github.com/github/awesome-copilot/tree/main/skills/cloud-design-patterns) | Cloud architecture patterns (retry, circuit breaker) | GitHub | Choose patterns based on requirements, not trends |
143
+
144
+ **Progression:** GitHub → AWS/Cloudflare → Terraform → Grafana → Docker
145
+
146
+ ---
147
+
148
+ ## 5. Security & Testing
149
+
150
+ **Core skills:** Vulnerability scanning, code review, QA
151
+
152
+ ### MCPs (Tools)
153
+
154
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
155
+ |------------|---------|------|-------|---------------|
156
+ | Snyk Agent Scan | Security scanner for AI agents & MCPs | [snyk/agent-scan](https://github.com/snyk/agent-scan) | Official (1.9K stars) | Scan all new MCP installations before use |
157
+ | Playwright MCP | E2E security testing | [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) | Official (29K stars) | Test auth flows, input validation, XSS vectors |
158
+ | GitHub MCP | PR security review | [github/github-mcp-server](https://github.com/github/github-mcp-server) | Official (28K stars) | Enable branch protection; require reviews for security-sensitive paths |
159
+ | Filesystem MCP | Audit config files, secrets scanning | [modelcontextprotocol/servers/src/filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | Reference | Never log or expose file contents containing secrets |
160
+
161
+ ### Skills (Knowledge)
162
+
163
+ | Skill | What It Teaches | Source | Best Practice |
164
+ |-------|----------------|--------|---------------|
165
+ | [ai-prompt-engineering-safety-review](https://github.com/github/awesome-copilot/tree/main/skills/ai-prompt-engineering-safety-review) | Review prompts for injection and safety risks | GitHub | Check all user-facing prompts before deployment |
166
+ | [agent-governance](https://github.com/github/awesome-copilot/tree/main/skills/agent-governance) | Governance policies for AI agents | GitHub | Define boundaries before granting agent autonomy |
167
+ | [webapp-testing](https://github.com/anthropics/skills/tree/main/skills/webapp-testing) | Web application testing strategies | Anthropic | Test security boundaries, not just happy paths |
168
+ | [polyglot-test-agent](https://github.com/github/awesome-copilot/tree/main/skills/polyglot-test-agent) | Testing across multiple languages/frameworks | GitHub | Ensure coverage for all supported platforms |
169
+ | [doublecheck](https://github.com/github/awesome-copilot/tree/main/skills/doublecheck) | Verify work by reviewing own output | GitHub | Always double-check security-critical code paths |
170
+ | [scoutqa-test](https://github.com/github/awesome-copilot/tree/main/skills/scoutqa-test) | QA testing patterns and strategies | GitHub | Prioritize edge cases and error scenarios |
171
+
172
+ **Progression:** Filesystem → Snyk Agent Scan → GitHub PR review → Playwright E2E
173
+
174
+ **Note:** Semgrep has no official MCP server yet. The CLI tool ([semgrep/semgrep](https://github.com/semgrep/semgrep), 14K stars) can be used via Desktop Commander instead.
175
+
176
+ ---
177
+
178
+ ## 6. Design & Visual
179
+
180
+ **Core skills:** UI/UX, diagrams, visual assets, 3D
181
+
182
+ ### MCPs (Tools)
183
+
184
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
185
+ |------------|---------|------|-------|---------------|
186
+ | Playwright MCP | Visual testing, screenshot comparison | [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) | Official (29K stars) | Use for UI testing and visual regression; compare screenshots |
187
+
188
+ ### Skills (Knowledge)
189
+
190
+ | Skill | What It Teaches | Source | Best Practice |
191
+ |-------|----------------|--------|---------------|
192
+ | [canvas-design](https://github.com/anthropics/skills/tree/main/skills/canvas-design) | Visual design using canvas | Anthropic | Follow brand guidelines; maintain visual consistency |
193
+ | [brand-guidelines](https://github.com/anthropics/skills/tree/main/skills/brand-guidelines) | Create and follow brand identity standards | Anthropic | Define colors, typography, spacing before designing |
194
+ | [theme-factory](https://github.com/anthropics/skills/tree/main/skills/theme-factory) | Generate consistent UI themes | Anthropic | Support light/dark modes; use CSS variables |
195
+ | [algorithmic-art](https://github.com/anthropics/skills/tree/main/skills/algorithmic-art) | Generate art through algorithms | Anthropic | Start with simple patterns; iterate on complexity |
196
+ | [excalidraw-diagram-generator](https://github.com/github/awesome-copilot/tree/main/skills/excalidraw-diagram-generator) | Generate Excalidraw architecture diagrams | GitHub | Use consistent shapes and colors for element types |
197
+ | [penpot-uiux-design](https://github.com/github/awesome-copilot/tree/main/skills/penpot-uiux-design) | UI/UX design using Penpot (open-source Figma alternative) | GitHub | Use components and design tokens for consistency |
198
+
199
+ **Progression:** Playwright (visual testing) → Excalidraw skill → Canvas design skill
200
+
201
+ **Note:** No official Canva, Excalidraw, Blender, Mermaid, or DaVinci Resolve MCP servers from their respective companies exist yet. Community options are individual-owned — use Playwright for visual testing and the Anthropic design skills instead.
202
+
203
+ ---
204
+
205
+ ## 7. Research & Knowledge
206
+
207
+ **Core skills:** Literature review, fact-checking, source evaluation, synthesis
208
+
209
+ ### MCPs (Tools)
210
+
211
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
212
+ |------------|---------|------|-------|---------------|
213
+ | Brave Search MCP | Web search with privacy | [brave/brave-search-mcp-server](https://github.com/brave/brave-search-mcp-server) | Official (775 stars) | Always cite sources; cross-reference claims |
214
+ | Fetch MCP | Read web pages, extract content | [modelcontextprotocol/servers/src/fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) | Reference | Convert HTML to markdown for cleaner extraction |
215
+ | Memory MCP | Persistent knowledge graph | [modelcontextprotocol/servers/src/memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) | Reference | Structure entities and relationships; don't dump raw text |
216
+ | arXiv MCP | Academic paper search & retrieval | [blazickjp/arxiv-mcp-server](https://github.com/blazickjp/arxiv-mcp-server) | Verified Community (2.4K stars) | Use specific search queries; filter by date and category |
217
+ | Firecrawl MCP | Deep web crawling, site analysis | [firecrawl/firecrawl-mcp-server](https://github.com/firecrawl/firecrawl-mcp-server) | Official (5.8K stars) | Rate-limit crawls; respect site ToS |
218
+
219
+ ### Skills (Knowledge)
220
+
221
+ | Skill | What It Teaches | Source | Best Practice |
222
+ |-------|----------------|--------|---------------|
223
+ | [remember](https://github.com/github/awesome-copilot/tree/main/skills/remember) | Persistent memory patterns for agents | GitHub | Store structured findings, not raw dumps |
224
+ | [context-map](https://github.com/github/awesome-copilot/tree/main/skills/context-map) | Map context relationships in complex domains | GitHub | Identify bounded contexts before deep-diving |
225
+ | [create-technical-spike](https://github.com/github/awesome-copilot/tree/main/skills/create-technical-spike) | Time-boxed research investigations | GitHub | Define success criteria upfront; document findings |
226
+ | [first-ask](https://github.com/github/awesome-copilot/tree/main/skills/first-ask) | Ask clarifying questions before acting | GitHub | Avoid assumptions; validate understanding first |
227
+ | [what-context-needed](https://github.com/github/awesome-copilot/tree/main/skills/what-context-needed) | Determine what context is needed for a task | GitHub | Request specific files/docs rather than broad context |
228
+
229
+ **Progression:** Brave Search + Fetch → Memory → arXiv → Firecrawl
230
+
231
+ **Note:** PubMed MCP servers exist but are small community projects (<150 stars). For biomedical research, use Fetch MCP with the PubMed API directly.
232
+
233
+ ---
234
+
235
+ ## 8. Writing & Content
236
+
237
+ **Core skills:** Technical writing, copywriting, documentation, editing
238
+
239
+ ### MCPs (Tools)
240
+
241
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
242
+ |------------|---------|------|-------|---------------|
243
+ | Filesystem MCP | Read/write documents | [modelcontextprotocol/servers/src/filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | Reference | Use consistent file naming; version important docs |
244
+ | Notion MCP | Knowledge base, docs, wikis | [makenotion/notion-mcp-server](https://github.com/makenotion/notion-mcp-server) | Official (4K stars) | Use API integration token scoped to specific pages |
245
+ | ElevenLabs MCP | Text-to-speech for content | [elevenlabs/elevenlabs-mcp](https://github.com/elevenlabs/elevenlabs-mcp) | Official (1.3K stars) | Choose appropriate voice for content type; review audio before publishing |
246
+
247
+ ### Skills (Knowledge)
248
+
249
+ | Skill | What It Teaches | Source | Best Practice |
250
+ |-------|----------------|--------|---------------|
251
+ | [doc-coauthoring](https://github.com/anthropics/skills/tree/main/skills/doc-coauthoring) | Collaborative document writing | Anthropic | Maintain consistent voice; track changes |
252
+ | [docx](https://github.com/anthropics/skills/tree/main/skills/docx) | Word document creation with formatting | Anthropic | Use styles consistently; include table of contents for long docs |
253
+ | [pdf](https://github.com/anthropics/skills/tree/main/skills/pdf) | PDF document handling and extraction | Anthropic | Preserve formatting; validate extracted text |
254
+ | [pptx](https://github.com/anthropics/skills/tree/main/skills/pptx) | PowerPoint presentation creation | Anthropic | One idea per slide; use speaker notes for detail |
255
+ | [documentation-writer](https://github.com/github/awesome-copilot/tree/main/skills/documentation-writer) | Technical documentation best practices | GitHub | Write for the reader's level; include code examples |
256
+ | [create-readme](https://github.com/github/awesome-copilot/tree/main/skills/create-readme) | Generate comprehensive READMEs | GitHub | Include install, usage, and contributing sections |
257
+ | [create-specification](https://github.com/github/awesome-copilot/tree/main/skills/create-specification) | Write technical specifications | GitHub | Define scope, constraints, and acceptance criteria |
258
+ | [convert-plaintext-to-md](https://github.com/github/awesome-copilot/tree/main/skills/convert-plaintext-to-md) | Convert unstructured text to markdown | GitHub | Preserve semantic meaning; use headings for hierarchy |
259
+ | [comment-code-generate-a-tutorial](https://github.com/github/awesome-copilot/tree/main/skills/comment-code-generate-a-tutorial) | Turn code into step-by-step tutorials | GitHub | Explain the "why", not just the "what" |
260
+
261
+ **Progression:** Filesystem + Notion → ElevenLabs
262
+
263
+ **Note:** SEO, AI Humanizer, and Script Generation MCPs are small community projects without verified publishers. For SEO, use Firecrawl + Brave Search. For PDF conversion, use standard CLI tools.
264
+
265
+ ---
266
+
267
+ ## 9. Communication & Collaboration
268
+
269
+ **Core skills:** Team coordination, status updates, async communication
270
+
271
+ ### MCPs (Tools)
272
+
273
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
274
+ |------------|---------|------|-------|---------------|
275
+ | Notion MCP | Shared documentation | [makenotion/notion-mcp-server](https://github.com/makenotion/notion-mcp-server) | Official (4K stars) | Scope integration to team workspace only |
276
+ | Atlassian MCP | Jira issues, Confluence docs | [atlassian/atlassian-mcp-server](https://github.com/atlassian/atlassian-mcp-server) | Official (436 stars) | Use read-mostly; require approval for issue status changes |
277
+
278
+ ### Skills (Knowledge)
279
+
280
+ | Skill | What It Teaches | Source | Best Practice |
281
+ |-------|----------------|--------|---------------|
282
+ | [internal-comms](https://github.com/anthropics/skills/tree/main/skills/internal-comms) | Internal communication writing | Anthropic | Match tone to audience; be concise |
283
+ | [slack-gif-creator](https://github.com/anthropics/skills/tree/main/skills/slack-gif-creator) | Create engaging Slack messages with GIFs | Anthropic | Use sparingly; match team culture |
284
+ | [meeting-minutes](https://github.com/github/awesome-copilot/tree/main/skills/meeting-minutes) | Capture and structure meeting notes | GitHub | Include action items with owners and deadlines |
285
+ | [mentoring-juniors](https://github.com/github/awesome-copilot/tree/main/skills/mentoring-juniors) | Guide junior developers effectively | GitHub | Explain reasoning, not just solutions |
286
+ | [make-repo-contribution](https://github.com/github/awesome-copilot/tree/main/skills/make-repo-contribution) | Contribute to open-source repositories | GitHub | Read CONTRIBUTING.md first; start with small PRs |
287
+
288
+ **Progression:** Notion → Atlassian
289
+
290
+ **Note:** Slack has an official MCP plugin ([slackapi/slack-mcp-plugin](https://github.com/slackapi/slack-mcp-plugin)) but it's early-stage (21 stars). Discord MCP is community-only (186 stars). Gmail MCP (GongRzhe) has been archived and removed — no official Google MCP exists yet.
291
+
292
+ ---
293
+
294
+ ## 10. Project Management
295
+
296
+ **Core skills:** Planning, task tracking, roadmapping, resource allocation
297
+
298
+ ### MCPs (Tools)
299
+
300
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
301
+ |------------|---------|------|-------|---------------|
302
+ | GitHub MCP | Issues, milestones, project boards | [github/github-mcp-server](https://github.com/github/github-mcp-server) | Official (28K stars) | Use labels and milestones consistently; link PRs to issues |
303
+ | Notion MCP | Project wikis, databases | [makenotion/notion-mcp-server](https://github.com/makenotion/notion-mcp-server) | Official (4K stars) | Structure databases with consistent schemas |
304
+ | Atlassian MCP | Jira sprints, boards | [atlassian/atlassian-mcp-server](https://github.com/atlassian/atlassian-mcp-server) | Official (436 stars) | Follow team's existing workflow; don't create custom fields without approval |
305
+ | Memory MCP | Track decisions across sessions | [modelcontextprotocol/servers/src/memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) | Reference | Log key decisions with rationale and date |
306
+
307
+ ### Skills (Knowledge)
308
+
309
+ | Skill | What It Teaches | Source | Best Practice |
310
+ |-------|----------------|--------|---------------|
311
+ | [breakdown-epic-pm](https://github.com/github/awesome-copilot/tree/main/skills/breakdown-epic-pm) | Break epics into manageable stories | GitHub | Each story should be independently deliverable |
312
+ | [breakdown-plan](https://github.com/github/awesome-copilot/tree/main/skills/breakdown-plan) | Decompose plans into actionable tasks | GitHub | Include estimates and dependencies |
313
+ | [prd](https://github.com/github/awesome-copilot/tree/main/skills/prd) | Write product requirements documents | GitHub | Define user stories, acceptance criteria, and scope |
314
+ | [create-github-issues-feature-from-implementation-plan](https://github.com/github/awesome-copilot/tree/main/skills/create-github-issues-feature-from-implementation-plan) | Convert plans to trackable GitHub issues | GitHub | Link issues to milestones; add labels for priority |
315
+ | [github-issues](https://github.com/github/awesome-copilot/tree/main/skills/github-issues) | Effective GitHub issue management | GitHub | Use templates; include repro steps for bugs |
316
+ | [create-architectural-decision-record](https://github.com/github/awesome-copilot/tree/main/skills/create-architectural-decision-record) | Document architecture decisions (ADRs) | GitHub | Record context, decision, and consequences |
317
+ | [project-workflow-analysis-blueprint-generator](https://github.com/github/awesome-copilot/tree/main/skills/project-workflow-analysis-blueprint-generator) | Analyze and document project workflows | GitHub | Map current state before proposing changes |
318
+
319
+ **Progression:** GitHub issues + Notion → Atlassian → Memory
320
+
321
+ ---
322
+
323
+ ## 11. Media & Audio Production
324
+
325
+ **Core skills:** Audio editing, music, podcasts, sound design
326
+
327
+ ### MCPs (Tools)
328
+
329
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
330
+ |------------|---------|------|-------|---------------|
331
+ | ElevenLabs MCP | Text-to-speech voice generation | [elevenlabs/elevenlabs-mcp](https://github.com/elevenlabs/elevenlabs-mcp) | Official (1.3K stars) | Match voice to audience; review all generated audio |
332
+
333
+ ### Skills (Knowledge)
334
+
335
+ | Skill | What It Teaches | Source | Best Practice |
336
+ |-------|----------------|--------|---------------|
337
+ | [transloadit-media-processing](https://github.com/github/awesome-copilot/tree/main/skills/transloadit-media-processing) | Media processing (video, OCR, 86+ robots) | GitHub | Choose appropriate encoding for target platform |
338
+ | [image-manipulation-image-magick](https://github.com/github/awesome-copilot/tree/main/skills/image-manipulation-image-magick) | Image manipulation with ImageMagick | GitHub | Preserve originals; use lossless formats for intermediates |
339
+
340
+ **Progression:** ElevenLabs
341
+
342
+ **Note:** Spotify, DaVinci Resolve, Blender, and Reaper DAW MCPs are individual-owned community projects — removed pending official releases. ElevenLabs is the only official media MCP.
343
+
344
+ ---
345
+
346
+ ## 12. Database & Backend
347
+
348
+ **Core skills:** Schema design, query optimization, migrations, data modeling
349
+
350
+ ### MCPs (Tools)
351
+
352
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
353
+ |------------|---------|------|-------|---------------|
354
+ | MongoDB MCP | Document database operations | [mongodb-js/mongodb-mcp-server](https://github.com/mongodb-js/mongodb-mcp-server) | Official (959 stars) | Use connection strings from env vars; never hardcode credentials |
355
+ | Chroma MCP | Vector database for embeddings | [chroma-core/chroma-mcp](https://github.com/chroma-core/chroma-mcp) | Official (515 stars) | Scope collections per project; clean up unused embeddings |
356
+ | Stripe MCP | Payment integration & data | [stripe/ai](https://github.com/stripe/ai) | Official (1.4K stars) | Use test mode keys for development; never log payment data |
357
+
358
+ ### Skills (Knowledge)
359
+
360
+ | Skill | What It Teaches | Source | Best Practice |
361
+ |-------|----------------|--------|---------------|
362
+ | [postgresql-optimization](https://github.com/github/awesome-copilot/tree/main/skills/postgresql-optimization) | PostgreSQL query and schema optimization | GitHub | Use EXPLAIN ANALYZE; add indexes based on query patterns |
363
+ | [postgresql-code-review](https://github.com/github/awesome-copilot/tree/main/skills/postgresql-code-review) | Review PostgreSQL code for issues | GitHub | Check for injection, missing constraints, N+1 queries |
364
+ | [cosmosdb-datamodeling](https://github.com/github/awesome-copilot/tree/main/skills/cosmosdb-datamodeling) | NoSQL data modeling patterns | GitHub | Design for access patterns, not normalization |
365
+ | [ef-core](https://github.com/github/awesome-copilot/tree/main/skills/ef-core) | Entity Framework Core patterns | GitHub | Use migrations; avoid lazy loading in production |
366
+ | [creating-oracle-to-postgres-master-migration-plan](https://github.com/github/awesome-copilot/tree/main/skills/creating-oracle-to-postgres-master-migration-plan) | Database migration planning | GitHub | Test migrations on copy of production data first |
367
+
368
+ **Progression:** MongoDB → Chroma → Stripe
369
+
370
+ **Note:** PostgreSQL and SQLite reference servers are archived at [modelcontextprotocol/servers-archived](https://github.com/modelcontextprotocol/servers-archived). No official Supabase MCP exists yet — use the Supabase client library or REST API via Fetch MCP.
371
+
372
+ ---
373
+
374
+ ## 13. Cloud & Platform
375
+
376
+ **Core skills:** Cloud services, serverless, edge computing, scaling
377
+
378
+ ### MCPs (Tools)
379
+
380
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
381
+ |------------|---------|------|-------|---------------|
382
+ | AWS MCP Servers | Lambda, S3, EC2, full AWS suite | [awslabs/mcp](https://github.com/awslabs/mcp) | Official (8.5K stars) | Use IAM roles with least privilege; rotate credentials |
383
+ | Cloudflare MCP | Workers, edge, CDN, DNS | [cloudflare/mcp-server-cloudflare](https://github.com/cloudflare/mcp-server-cloudflare) | Official (3.5K stars) | Test Workers locally with wrangler before deploy |
384
+ | Terraform MCP | Multi-cloud IaC | [hashicorp/terraform-mcp-server](https://github.com/hashicorp/terraform-mcp-server) | Official (1.3K stars) | Use remote state; lock state during operations |
385
+ | Docker MCP Gateway | Container orchestration | [docker/mcp-gateway](https://github.com/docker/mcp-gateway) | Official (1.3K stars) | Use Docker Compose for multi-container; don't run as root |
386
+
387
+ ### Skills (Knowledge)
388
+
389
+ | Skill | What It Teaches | Source | Best Practice |
390
+ |-------|----------------|--------|---------------|
391
+ | [azure-static-web-apps](https://github.com/github/awesome-copilot/tree/main/skills/azure-static-web-apps) | Deploy static web apps to cloud | GitHub | Use staging environments; configure custom domains |
392
+ | [azure-resource-visualizer](https://github.com/github/awesome-copilot/tree/main/skills/azure-resource-visualizer) | Visualize cloud resource relationships | GitHub | Document dependencies before making changes |
393
+ | [azure-role-selector](https://github.com/github/awesome-copilot/tree/main/skills/azure-role-selector) | Select appropriate cloud IAM roles | GitHub | Always follow least-privilege principle |
394
+ | [containerize-aspnetcore](https://github.com/github/awesome-copilot/tree/main/skills/containerize-aspnetcore) | Containerize applications for cloud | GitHub | Use multi-stage builds; minimize image size |
395
+
396
+ **Progression:** Docker → AWS/Cloudflare → Terraform
397
+
398
+ **Note:** Pulumi has no official MCP server yet. Use Terraform MCP as the primary IaC tool.
399
+
400
+ ---
401
+
402
+ ## 14. Marketing & SEO
403
+
404
+ **Core skills:** SEO, competitor analysis, content strategy, social media
405
+
406
+ ### MCPs (Tools)
407
+
408
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
409
+ |------------|---------|------|-------|---------------|
410
+ | Firecrawl MCP | SEO audit, competitor crawling | [firecrawl/firecrawl-mcp-server](https://github.com/firecrawl/firecrawl-mcp-server) | Official (5.8K stars) | Respect rate limits; only crawl sites you own or have permission for |
411
+ | Brave Search MCP | Market research, trend analysis | [brave/brave-search-mcp-server](https://github.com/brave/brave-search-mcp-server) | Official (775 stars) | Use date filters for trend research; verify claims |
412
+ | Notion MCP | Content calendar, strategy docs | [makenotion/notion-mcp-server](https://github.com/makenotion/notion-mcp-server) | Official (4K stars) | Template recurring content workflows |
413
+
414
+ ### Skills (Knowledge)
415
+
416
+ | Skill | What It Teaches | Source | Best Practice |
417
+ |-------|----------------|--------|---------------|
418
+ | [napkin](https://github.com/github/awesome-copilot/tree/main/skills/napkin) | Quick ideation and concept sketching | GitHub | Capture ideas fast; refine later |
419
+ | [sponsor-finder](https://github.com/github/awesome-copilot/tree/main/skills/sponsor-finder) | Find potential sponsors and partners | GitHub | Research fit before outreach; personalize pitches |
420
+ | [boost-prompt](https://github.com/github/awesome-copilot/tree/main/skills/boost-prompt) | Improve and refine prompts for better output | GitHub | Test variations; measure output quality |
421
+
422
+ **Progression:** Brave Search → Firecrawl → Notion
423
+
424
+ **Note:** SEO-specific and Canva MCP servers are small community projects. Use Firecrawl for SEO analysis and Playwright for visual testing instead.
425
+
426
+ ---
427
+
428
+ ## 15. Science & Life Sciences
429
+
430
+ **Core skills:** Research, data analysis, literature review, bioinformatics
431
+
432
+ ### MCPs (Tools)
433
+
434
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
435
+ |------------|---------|------|-------|---------------|
436
+ | arXiv MCP | Academic paper search & retrieval | [blazickjp/arxiv-mcp-server](https://github.com/blazickjp/arxiv-mcp-server) | Verified Community (2.4K stars) | Filter by subject area and date range; check citation count |
437
+ | Fetch MCP | Access PubMed, NCBI, and other APIs | [modelcontextprotocol/servers/src/fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) | Reference | Use structured API endpoints (PubMed E-utilities) for reliable results |
438
+ | Memory MCP | Track research findings across sessions | [modelcontextprotocol/servers/src/memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) | Reference | Store citation metadata with findings |
439
+
440
+ ### Skills (Knowledge)
441
+
442
+ No dedicated science skills exist yet in the major repos. Recommended approach:
443
+ - Use **Research & Knowledge** skills (Section 7) for literature review workflows
444
+ - Use **Data Analysis** skills (Section 3) for statistical analysis
445
+ - Use Fetch MCP with domain APIs: PubMed E-utilities, UniProt, NCBI BLAST
446
+
447
+ **Progression:** Fetch (PubMed API) + arXiv → Memory
448
+
449
+ **Note:** Specialized bioinformatics MCPs (BioThings, UCSC Genome, FHIR) exist as community projects but have very low adoption. Use Fetch MCP with their REST APIs directly for better reliability.
450
+
451
+ ---
452
+
453
+ ## 16. Finance & Commerce
454
+
455
+ **Core skills:** Financial data, payments, pricing, market analysis
456
+
457
+ ### MCPs (Tools)
458
+
459
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
460
+ |------------|---------|------|-------|---------------|
461
+ | Stripe MCP | Payment integration & billing | [stripe/ai](https://github.com/stripe/ai) | Official (1.4K stars) | Always use test keys in development; log no PCI data |
462
+ | Brave Search MCP | Market research, financial news | [brave/brave-search-mcp-server](https://github.com/brave/brave-search-mcp-server) | Official (775 stars) | Cross-reference financial data from multiple sources |
463
+ | Fetch MCP | Access financial APIs directly | [modelcontextprotocol/servers/src/fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) | Reference | Validate API responses; handle rate limits gracefully |
464
+
465
+ ### Skills (Knowledge)
466
+
467
+ | Skill | What It Teaches | Source | Best Practice |
468
+ |-------|----------------|--------|---------------|
469
+ | [azure-pricing](https://github.com/github/awesome-copilot/tree/main/skills/azure-pricing) | Cloud pricing analysis and estimation | GitHub | Compare tiers; account for data transfer costs |
470
+ | [datanalysis-credit-risk](https://github.com/github/awesome-copilot/tree/main/skills/datanalysis-credit-risk) | Financial risk data analysis | GitHub | Validate models with historical data |
471
+
472
+ **Progression:** Fetch (financial APIs) → Brave Search → Stripe
473
+
474
+ **Note:** Financial Datasets and x402 Payments MCPs are small community projects. Use Fetch MCP with established APIs (Alpha Vantage, Yahoo Finance) instead.
475
+
476
+ ---
477
+
478
+ ## 17. AI & Machine Learning
479
+
480
+ **Core skills:** Model training, prompt engineering, agent orchestration
481
+
482
+ ### MCPs (Tools)
483
+
484
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
485
+ |------------|---------|------|-------|---------------|
486
+ | Sequential Thinking MCP | Complex multi-step reasoning | [modelcontextprotocol/servers/src/sequentialthinking](https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking) | Reference | Use for planning and decomposition, not simple queries |
487
+ | Memory MCP | Persistent knowledge across sessions | [modelcontextprotocol/servers/src/memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) | Reference | Structure as knowledge graph; prune stale entries |
488
+ | Chroma MCP | Vector database for embeddings | [chroma-core/chroma-mcp](https://github.com/chroma-core/chroma-mcp) | Official (515 stars) | Use appropriate embedding models; monitor collection size |
489
+
490
+ ### Skills (Knowledge)
491
+
492
+ | Skill | What It Teaches | Source | Best Practice |
493
+ |-------|----------------|--------|---------------|
494
+ | [claude-api](https://github.com/anthropics/skills/tree/main/skills/claude-api) | Build applications with the Claude API | Anthropic | Use streaming for long responses; handle rate limits |
495
+ | [mcp-builder](https://github.com/anthropics/skills/tree/main/skills/mcp-builder) | Build MCP servers from scratch | Anthropic | Follow spec; validate with MCP inspector |
496
+ | [skill-creator](https://github.com/anthropics/skills/tree/main/skills/skill-creator) | Create new agent skills (SKILL.md) | Anthropic | Include examples, edge cases, and constraints |
497
+ | [model-recommendation](https://github.com/github/awesome-copilot/tree/main/skills/model-recommendation) | Choose the right AI model for a task | GitHub | Consider cost, latency, and capability tradeoffs |
498
+ | [agentic-eval](https://github.com/github/awesome-copilot/tree/main/skills/agentic-eval) | Evaluate agentic AI systems | GitHub | Define clear success metrics; test adversarial inputs |
499
+ | [prompt-builder](https://github.com/github/awesome-copilot/tree/main/skills/prompt-builder) | Craft effective prompts | GitHub | Be specific; provide examples; constrain output format |
500
+ | [finalize-agent-prompt](https://github.com/github/awesome-copilot/tree/main/skills/finalize-agent-prompt) | Polish and finalize agent system prompts | GitHub | Test with edge cases before deploying |
501
+ | [structured-autonomy-plan](https://github.com/github/awesome-copilot/tree/main/skills/structured-autonomy-plan) | Plan structured autonomous agent workflows | GitHub | Define guardrails and escalation points |
502
+
503
+ **Progression:** Sequential Thinking + Memory → Chroma
504
+
505
+ **Note:** Ollama, DeepSeek, Gemini, and Grok MCP servers are community projects with low adoption. For multi-model access, use the respective APIs via Fetch MCP or their official SDKs.
506
+
507
+ ---
508
+
509
+ ## 18. Culture & Creative
510
+
511
+ **Core skills:** Art curation, cultural knowledge, entertainment, creative projects
512
+
513
+ ### MCPs (Tools)
514
+
515
+ | MCP / Tool | Purpose | Link | Trust | Best Practice |
516
+ |------------|---------|------|-------|---------------|
517
+ | Fetch MCP | Access museum APIs (Met, Smithsonian, etc.) | [modelcontextprotocol/servers/src/fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) | Reference | Use official REST APIs (Met: metmuseum.github.io, Smithsonian: api.si.edu) |
518
+ | ElevenLabs MCP | Audio for creative projects | [elevenlabs/elevenlabs-mcp](https://github.com/elevenlabs/elevenlabs-mcp) | Official (1.3K stars) | Match voice style to project tone |
519
+
520
+ ### Skills (Knowledge)
521
+
522
+ | Skill | What It Teaches | Source | Best Practice |
523
+ |-------|----------------|--------|---------------|
524
+ | [algorithmic-art](https://github.com/anthropics/skills/tree/main/skills/algorithmic-art) | Generate art through code and algorithms | Anthropic | Experiment with parameters; document interesting seeds |
525
+ | [game-engine](https://github.com/github/awesome-copilot/tree/main/skills/game-engine) | Game development patterns and engines | GitHub | Start with prototypes; iterate on gameplay before polish |
526
+ | [repo-story-time](https://github.com/github/awesome-copilot/tree/main/skills/repo-story-time) | Tell the story of a codebase's evolution | GitHub | Use git history to understand design decisions |
527
+ | [noob-mode](https://github.com/github/awesome-copilot/tree/main/skills/noob-mode) | Explain complex topics simply | GitHub | Use analogies; build up from fundamentals |
528
+
529
+ **Progression:** Fetch (museum APIs) → ElevenLabs
530
+
531
+ **Note:** TMDB, AniList, Discogs, and museum-specific MCPs exist but have very low adoption (<25 stars). Use Fetch MCP with their public REST APIs for better reliability.
532
+
533
+ ---
534
+
535
+ ## How This Integrates with Level-Up
536
+
537
+ ### Growth Plan Connection
538
+ When `levelup_get_growth_plan` generates recommendations, it should reference this document to suggest specific MCPs **and** Skills for the agent's weakest abilities. MCPs give agents tools; Skills teach them how to use those tools well.
539
+
540
+ ### Skill Verification (v0.3 Testing Service)
541
+ Each ability's MCP + Skill list defines what can be tested:
542
+ - **Level 1-2:** Basic tool usage + can follow skill instructions
543
+ - **Level 3-4:** Applied competence — can the agent solve real problems using both?
544
+ - **Level 5:** Mastery — can the agent combine tools and knowledge for complex workflows?
545
+
546
+ ### XP Bonuses
547
+ - Installing recommended MCPs → XP for tool capability
548
+ - Installing recommended Skills → XP for knowledge acquisition
549
+ - Demonstrating both together → bonus multiplier
550
+
551
+ ### Anti-Gaming
552
+ - Agents who install MCPs without completing tasks using them → no full credit
553
+ - Agents who install Skills without applying the patterns → no full credit
554
+ - Genuine usage (tasks that exercise the MCP + follow the Skill's patterns) → full credit
555
+
556
+ ---
557
+
558
+ ## MCP Trust Summary
559
+
560
+ ### Official (published by platform owner)
561
+ | MCP | Org | Stars | Link |
562
+ |-----|-----|-------|------|
563
+ | GitHub MCP | github | 27,881 | [github/github-mcp-server](https://github.com/github/github-mcp-server) |
564
+ | Playwright MCP | microsoft | 28,870 | [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) |
565
+ | AWS MCP | awslabs | 8,451 | [awslabs/mcp](https://github.com/awslabs/mcp) |
566
+ | Firecrawl MCP | firecrawl | 5,767 | [firecrawl/firecrawl-mcp-server](https://github.com/firecrawl/firecrawl-mcp-server) |
567
+ | Notion MCP | makenotion | 4,041 | [makenotion/notion-mcp-server](https://github.com/makenotion/notion-mcp-server) |
568
+ | Cloudflare MCP | cloudflare | 3,529 | [cloudflare/mcp-server-cloudflare](https://github.com/cloudflare/mcp-server-cloudflare) |
569
+ | Grafana MCP | grafana | 2,543 | [grafana/mcp-grafana](https://github.com/grafana/mcp-grafana) |
570
+ | Snyk Agent Scan | snyk | 1,865 | [snyk/agent-scan](https://github.com/snyk/agent-scan) |
571
+ | Stripe AI | stripe | 1,361 | [stripe/ai](https://github.com/stripe/ai) |
572
+ | Docker MCP Gateway | docker | 1,300 | [docker/mcp-gateway](https://github.com/docker/mcp-gateway) |
573
+ | Terraform MCP | hashicorp | 1,275 | [hashicorp/terraform-mcp-server](https://github.com/hashicorp/terraform-mcp-server) |
574
+ | ElevenLabs MCP | elevenlabs | 1,262 | [elevenlabs/elevenlabs-mcp](https://github.com/elevenlabs/elevenlabs-mcp) |
575
+ | MongoDB MCP | mongodb-js | 959 | [mongodb-js/mongodb-mcp-server](https://github.com/mongodb-js/mongodb-mcp-server) |
576
+ | Brave Search MCP | brave | 775 | [brave/brave-search-mcp-server](https://github.com/brave/brave-search-mcp-server) |
577
+ | Chroma MCP | chroma-core | 515 | [chroma-core/chroma-mcp](https://github.com/chroma-core/chroma-mcp) |
578
+ | Atlassian MCP | atlassian | 436 | [atlassian/atlassian-mcp-server](https://github.com/atlassian/atlassian-mcp-server) |
579
+
580
+ ### Reference (MCP org)
581
+ | MCP | Package | Link |
582
+ |-----|---------|------|
583
+ | Filesystem | @modelcontextprotocol/server-filesystem | [src/filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) |
584
+ | Git | mcp-server-git | [src/git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) |
585
+ | Fetch | @modelcontextprotocol/server-fetch | [src/fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) |
586
+ | Memory | @modelcontextprotocol/server-memory | [src/memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory) |
587
+ | Sequential Thinking | @modelcontextprotocol/server-sequentialthinking | [src/sequentialthinking](https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking) |
588
+
589
+ ### Verified Community (500+ stars, retained)
590
+ | MCP | Author | Stars | Link |
591
+ |-----|--------|-------|------|
592
+ | Desktop Commander | wonderwhy-er | 5,689 | [wonderwhy-er/DesktopCommanderMCP](https://github.com/wonderwhy-er/DesktopCommanderMCP) |
593
+ | arXiv MCP | blazickjp | 2,351 | [blazickjp/arxiv-mcp-server](https://github.com/blazickjp/arxiv-mcp-server) |
594
+
595
+ ### Removed (individual-owned, no official alternative)
596
+ | MCP | Reason |
597
+ |-----|--------|
598
+ | Blender MCP (ahujasid) | Individual owner — no official Blender MCP |
599
+ | Gmail MCP (GongRzhe) | Archived, individual owner — no official Google MCP |
600
+ | Supabase MCP (alexander-zuev) | Individual owner — no official Supabase MCP |
601
+ | DaVinci Resolve MCP (samuelgursky) | Individual owner — no official DaVinci MCP |
602
+ | Spotify MCP (varunneal) | Individual owner — no official Spotify MCP |
603
+ | Airtable MCP (domdomegg) | Individual owner — no official Airtable MCP |
604
+ | Mermaid MCP (peng-shawn) | Individual owner, low stars — no official Mermaid MCP |
605
+
606
+ ---
607
+
608
+ ## Sources
609
+
610
+ ### MCP Sources
611
+ - [Official MCP Servers (GitHub)](https://github.com/modelcontextprotocol/servers)
612
+ - [Archived Reference Servers](https://github.com/modelcontextprotocol/servers-archived)
613
+
614
+ ### Skill Sources
615
+ - [anthropics/skills](https://github.com/anthropics/skills) — Official Anthropic skills (93K stars)
616
+ - [github/awesome-copilot](https://github.com/github/awesome-copilot) — 222 GitHub skills (25K stars)
617
+
618
+ ### Verification
619
+ - All MCP star counts verified via GitHub CLI (`gh repo view`) on 2026-03-15
620
+ - All skill links point to official repos (anthropics/skills or github/awesome-copilot)
621
+ - All recommended MCPs are owned by their respective company/org (no individual-owned repos)
622
+ - Individual-owned community MCPs removed on 2026-03-15 pending official releases