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.
- package/.claude/projects/c--Users-klexi-OneDrive-Desktop-Levelup-level-up-mcp-server/memory/project_testing_service.md +11 -0
- package/.claude/settings.local.json +10 -0
- package/.env.example +19 -0
- package/CLAUDE.md +222 -0
- package/CODE_REVIEW.md +282 -0
- package/LICENSE +64 -0
- package/README.md +198 -0
- package/dist/constants.d.ts +33 -0
- package/dist/constants.js +78 -0
- package/dist/constants.js.map +1 -0
- package/dist/data/quest-seeds.d.ts +18 -0
- package/dist/data/quest-seeds.js +380 -0
- package/dist/data/quest-seeds.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +260 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas/common.d.ts +33 -0
- package/dist/schemas/common.js +96 -0
- package/dist/schemas/common.js.map +1 -0
- package/dist/services/dispatcher.d.ts +27 -0
- package/dist/services/dispatcher.js +47 -0
- package/dist/services/dispatcher.js.map +1 -0
- package/dist/services/errors.d.ts +56 -0
- package/dist/services/errors.js +99 -0
- package/dist/services/errors.js.map +1 -0
- package/dist/services/format.d.ts +74 -0
- package/dist/services/format.js +144 -0
- package/dist/services/format.js.map +1 -0
- package/dist/services/ownership.d.ts +19 -0
- package/dist/services/ownership.js +79 -0
- package/dist/services/ownership.js.map +1 -0
- package/dist/services/quality-gate.d.ts +45 -0
- package/dist/services/quality-gate.js +131 -0
- package/dist/services/quality-gate.js.map +1 -0
- package/dist/services/rate-limit.d.ts +12 -0
- package/dist/services/rate-limit.js +49 -0
- package/dist/services/rate-limit.js.map +1 -0
- package/dist/services/register.d.ts +49 -0
- package/dist/services/register.js +63 -0
- package/dist/services/register.js.map +1 -0
- package/dist/services/supabase.d.ts +10 -0
- package/dist/services/supabase.js +79 -0
- package/dist/services/supabase.js.map +1 -0
- package/dist/tools/achievements.d.ts +6 -0
- package/dist/tools/achievements.js +242 -0
- package/dist/tools/achievements.js.map +1 -0
- package/dist/tools/admin.d.ts +16 -0
- package/dist/tools/admin.js +328 -0
- package/dist/tools/admin.js.map +1 -0
- package/dist/tools/agents.d.ts +3 -0
- package/dist/tools/agents.js +400 -0
- package/dist/tools/agents.js.map +1 -0
- package/dist/tools/bootstrap.d.ts +17 -0
- package/dist/tools/bootstrap.js +565 -0
- package/dist/tools/bootstrap.js.map +1 -0
- package/dist/tools/dispatchers/admin.d.ts +3 -0
- package/dist/tools/dispatchers/admin.js +50 -0
- package/dist/tools/dispatchers/admin.js.map +1 -0
- package/dist/tools/dispatchers/eval.d.ts +3 -0
- package/dist/tools/dispatchers/eval.js +40 -0
- package/dist/tools/dispatchers/eval.js.map +1 -0
- package/dist/tools/dispatchers/quests.d.ts +3 -0
- package/dist/tools/dispatchers/quests.js +60 -0
- package/dist/tools/dispatchers/quests.js.map +1 -0
- package/dist/tools/dispatchers/session.d.ts +3 -0
- package/dist/tools/dispatchers/session.js +38 -0
- package/dist/tools/dispatchers/session.js.map +1 -0
- package/dist/tools/dispatchers/skills.d.ts +3 -0
- package/dist/tools/dispatchers/skills.js +49 -0
- package/dist/tools/dispatchers/skills.js.map +1 -0
- package/dist/tools/dispatchers/tasks.d.ts +3 -0
- package/dist/tools/dispatchers/tasks.js +53 -0
- package/dist/tools/dispatchers/tasks.js.map +1 -0
- package/dist/tools/dispatchers/users.d.ts +3 -0
- package/dist/tools/dispatchers/users.js +65 -0
- package/dist/tools/dispatchers/users.js.map +1 -0
- package/dist/tools/dispatchers/xp.d.ts +3 -0
- package/dist/tools/dispatchers/xp.js +51 -0
- package/dist/tools/dispatchers/xp.js.map +1 -0
- package/dist/tools/growth-plan.d.ts +5 -0
- package/dist/tools/growth-plan.js +791 -0
- package/dist/tools/growth-plan.js.map +1 -0
- package/dist/tools/leaderboards.d.ts +10 -0
- package/dist/tools/leaderboards.js +279 -0
- package/dist/tools/leaderboards.js.map +1 -0
- package/dist/tools/leveling.d.ts +24 -0
- package/dist/tools/leveling.js +356 -0
- package/dist/tools/leveling.js.map +1 -0
- package/dist/tools/metrics.d.ts +3 -0
- package/dist/tools/metrics.js +247 -0
- package/dist/tools/metrics.js.map +1 -0
- package/dist/tools/quests.d.ts +5 -0
- package/dist/tools/quests.js +586 -0
- package/dist/tools/quests.js.map +1 -0
- package/dist/tools/ratings.d.ts +11 -0
- package/dist/tools/ratings.js +564 -0
- package/dist/tools/ratings.js.map +1 -0
- package/dist/tools/skills.d.ts +66 -0
- package/dist/tools/skills.js +1112 -0
- package/dist/tools/skills.js.map +1 -0
- package/dist/tools/system.d.ts +31 -0
- package/dist/tools/system.js +605 -0
- package/dist/tools/system.js.map +1 -0
- package/dist/tools/tasks.d.ts +73 -0
- package/dist/tools/tasks.js +1572 -0
- package/dist/tools/tasks.js.map +1 -0
- package/dist/tools/users.d.ts +97 -0
- package/dist/tools/users.js +1306 -0
- package/dist/tools/users.js.map +1 -0
- package/dist/tools/xp.d.ts +38 -0
- package/dist/tools/xp.js +670 -0
- package/dist/tools/xp.js.map +1 -0
- package/dist/types.d.ts +178 -0
- package/dist/types.js +12 -0
- package/dist/types.js.map +1 -0
- package/docs/recommended-skillsets.md +622 -0
- package/docs/skills-and-abilities-review.md +672 -0
- package/docs/v0.3-roadmap.md +191 -0
- package/package.json +35 -0
- package/sql/agent_pending_installs.sql +28 -0
- package/sql/award_class_xp.sql +81 -0
- package/supabase/.temp/cli-latest +1 -0
- package/supabase/.temp/gotrue-version +1 -0
- package/supabase/.temp/pooler-url +1 -0
- package/supabase/.temp/postgres-version +1 -0
- package/supabase/.temp/project-ref +1 -0
- package/supabase/.temp/rest-version +1 -0
- package/supabase/.temp/storage-migration +1 -0
- package/supabase/.temp/storage-version +1 -0
- package/supabase/migrations/20260314000000_anon_rls_policies.sql +311 -0
- package/supabase/migrations/20260314000001_ownership_rpcs.sql +382 -0
- package/supabase/migrations/20260314000002_evidence_and_growth_plan.sql +97 -0
- package/supabase/migrations/20260317000000_seed_quests.sql +62 -0
- package/supabase/migrations/20260317000001_star_cooldown_and_fixes.sql +16 -0
- package/supabase/migrations/20260318000000_restore_rank_names.sql +25 -0
- package/supabase/migrations/20260320000000_chinese_rank_names.sql +24 -0
- package/vitest.config.ts +11 -0
|
@@ -0,0 +1,672 @@
|
|
|
1
|
+
# Level-Up: Skills & MCP Abilities — Team Review
|
|
2
|
+
|
|
3
|
+
> **Version:** 0.3.3 | **Date:** 2026-03-18
|
|
4
|
+
> **Purpose:** External review of the ability taxonomy, skill catalog, and MCP tool list.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
Level-Up tracks agent and human progression across **18 ability categories**, each containing **skills** (knowledge/proficiency) and mapped to recommended **MCPs** (external tools agents can install). The system has **106 skills** across those categories, and **69 built-in Level-Up tools** that agents call to track their work.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Part 1: Ability Categories & Skill Catalog
|
|
15
|
+
|
|
16
|
+
Each section lists:
|
|
17
|
+
- **MCPs** — external tools agents install to perform work in this domain
|
|
18
|
+
- **Skills** — knowledge/prompts agents learn to work effectively
|
|
19
|
+
- **Trust tiers:** Official · Reference · Verified Community · Community
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
### 1. Software Engineering
|
|
24
|
+
|
|
25
|
+
**Core:** Code writing, debugging, refactoring, architecture design
|
|
26
|
+
|
|
27
|
+
#### MCPs
|
|
28
|
+
| Tool | Purpose | Trust |
|
|
29
|
+
|------|---------|-------|
|
|
30
|
+
| Filesystem MCP | Read/write/edit project files | Reference |
|
|
31
|
+
| Git MCP | Branch, commit, diff, merge | Reference |
|
|
32
|
+
| GitHub MCP | PRs, issues, code review, CI | Official (28K★) |
|
|
33
|
+
| Sequential Thinking | Multi-step reasoning for architecture | Reference |
|
|
34
|
+
| Desktop Commander | Terminal commands, process management | Verified Community (5.7K★) |
|
|
35
|
+
|
|
36
|
+
#### Skills
|
|
37
|
+
| Skill | What It Teaches | Source |
|
|
38
|
+
|-------|----------------|--------|
|
|
39
|
+
| refactor | Safe refactoring patterns, extract methods | GitHub |
|
|
40
|
+
| refactor-plan | Plan multi-step refactoring before executing | GitHub |
|
|
41
|
+
| review-and-refactor | Code review + improvement in one pass | GitHub |
|
|
42
|
+
| conventional-commit | Structured commit messages (feat/fix/chore) | GitHub |
|
|
43
|
+
| git-commit | Smart commit message generation from diffs | GitHub |
|
|
44
|
+
| architecture-blueprint-generator | Generate architecture docs from codebase | GitHub |
|
|
45
|
+
| create-implementation-plan | Break features into actionable steps | GitHub |
|
|
46
|
+
| mcp-builder | Build MCP servers from scratch | Anthropic |
|
|
47
|
+
| skill-creator | Create new SKILL.md files | Anthropic |
|
|
48
|
+
|
|
49
|
+
**Progression:** Filesystem + Git → GitHub → Sequential Thinking → Desktop Commander
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
### 2. Web Development
|
|
54
|
+
|
|
55
|
+
**Core:** Frontend/backend, HTML/CSS/JS, frameworks, APIs
|
|
56
|
+
|
|
57
|
+
#### MCPs
|
|
58
|
+
| Tool | Purpose | Trust |
|
|
59
|
+
|------|---------|-------|
|
|
60
|
+
| Filesystem MCP | Project file management | Reference |
|
|
61
|
+
| Playwright MCP | Browser automation, E2E testing | Official (29K★) |
|
|
62
|
+
| Fetch MCP | HTTP requests, API testing | Reference |
|
|
63
|
+
| Brave Search MCP | Search docs, APIs, debug errors | Official (775★) |
|
|
64
|
+
| Firecrawl MCP | Deep site crawling, scraping | Official (5.8K★) |
|
|
65
|
+
|
|
66
|
+
#### Skills
|
|
67
|
+
| Skill | What It Teaches | Source |
|
|
68
|
+
|-------|----------------|--------|
|
|
69
|
+
| frontend-design | Frontend UI design patterns | Anthropic |
|
|
70
|
+
| web-artifacts-builder | Build interactive web components | Anthropic |
|
|
71
|
+
| webapp-testing | Web application testing strategies | Anthropic |
|
|
72
|
+
| web-coder | Full-stack web development patterns | GitHub |
|
|
73
|
+
| web-design-reviewer | Review and critique web designs | GitHub |
|
|
74
|
+
| playwright-generate-test | Generate Playwright E2E tests | GitHub |
|
|
75
|
+
| playwright-explore-website | Navigate and analyze websites programmatically | GitHub |
|
|
76
|
+
| openapi-to-application-code | Generate app code from OpenAPI specs | GitHub |
|
|
77
|
+
|
|
78
|
+
**Progression:** Filesystem + Fetch → Playwright → Brave Search → Firecrawl
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
### 3. Data Analysis
|
|
83
|
+
|
|
84
|
+
**Core:** SQL, data wrangling, statistics, visualization
|
|
85
|
+
|
|
86
|
+
#### MCPs
|
|
87
|
+
| Tool | Purpose | Trust |
|
|
88
|
+
|------|---------|-------|
|
|
89
|
+
| Filesystem MCP | Read/write CSV, JSON, data files | Reference |
|
|
90
|
+
| Memory MCP | Track analysis context across sessions | Reference |
|
|
91
|
+
| Brave Search MCP | Research datasets, methodologies | Official (775★) |
|
|
92
|
+
| Chroma MCP | Vector database for embeddings | Official (515★) |
|
|
93
|
+
|
|
94
|
+
#### Skills
|
|
95
|
+
| Skill | What It Teaches | Source |
|
|
96
|
+
|-------|----------------|--------|
|
|
97
|
+
| xlsx | Excel spreadsheet creation, formulas, charts | Anthropic |
|
|
98
|
+
| datanalysis-credit-risk | Credit risk data analysis patterns | GitHub |
|
|
99
|
+
| bigquery-pipeline-audit | Audit and optimize data pipelines | GitHub |
|
|
100
|
+
| sql-optimization | SQL query performance tuning | GitHub |
|
|
101
|
+
| sql-code-review | Review SQL for correctness and performance | GitHub |
|
|
102
|
+
| powerbi-modeling | Power BI data modeling best practices | GitHub |
|
|
103
|
+
|
|
104
|
+
**Progression:** Filesystem → Memory → Brave Search → Chroma
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
### 4. DevOps & Infrastructure
|
|
109
|
+
|
|
110
|
+
**Core:** CI/CD, deployment, monitoring, IaC
|
|
111
|
+
|
|
112
|
+
#### MCPs
|
|
113
|
+
| Tool | Purpose | Trust |
|
|
114
|
+
|------|---------|-------|
|
|
115
|
+
| GitHub MCP | CI/CD via GitHub Actions | Official (28K★) |
|
|
116
|
+
| Terraform MCP | Infrastructure as code | Official (1.3K★) |
|
|
117
|
+
| AWS MCP Servers | Lambda, S3, cloud services | Official (8.5K★) |
|
|
118
|
+
| Cloudflare MCP | Workers, edge, CDN, DNS | Official (3.5K★) |
|
|
119
|
+
| Grafana MCP | Observability dashboards, alerts | Official (2.5K★) |
|
|
120
|
+
| Docker MCP Gateway | Container management | Official (1.3K★) |
|
|
121
|
+
|
|
122
|
+
#### Skills
|
|
123
|
+
| Skill | What It Teaches | Source |
|
|
124
|
+
|-------|----------------|--------|
|
|
125
|
+
| devops-rollout-plan | Plan safe production rollouts | GitHub |
|
|
126
|
+
| multi-stage-dockerfile | Optimize Docker images with multi-stage builds | GitHub |
|
|
127
|
+
| create-github-action-workflow-specification | Design GitHub Actions workflows | GitHub |
|
|
128
|
+
| import-infrastructure-as-code | Import existing infra into IaC | GitHub |
|
|
129
|
+
| azure-deployment-preflight | Pre-deployment validation checks | GitHub |
|
|
130
|
+
| az-cost-optimize | Cloud cost optimization strategies | GitHub |
|
|
131
|
+
| cloud-design-patterns | Cloud architecture patterns (retry, circuit breaker) | GitHub |
|
|
132
|
+
|
|
133
|
+
**Progression:** GitHub → AWS/Cloudflare → Terraform → Grafana → Docker
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
### 5. Security & Testing
|
|
138
|
+
|
|
139
|
+
**Core:** Vulnerability scanning, code review, QA
|
|
140
|
+
|
|
141
|
+
#### MCPs
|
|
142
|
+
| Tool | Purpose | Trust |
|
|
143
|
+
|------|---------|-------|
|
|
144
|
+
| Snyk Agent Scan | Security scanner for AI agents & MCPs | Official (1.9K★) |
|
|
145
|
+
| Playwright MCP | E2E security testing | Official (29K★) |
|
|
146
|
+
| GitHub MCP | PR security review | Official (28K★) |
|
|
147
|
+
| Filesystem MCP | Audit config files, secrets scanning | Reference |
|
|
148
|
+
|
|
149
|
+
#### Skills
|
|
150
|
+
| Skill | What It Teaches | Source |
|
|
151
|
+
|-------|----------------|--------|
|
|
152
|
+
| ai-prompt-engineering-safety-review | Review prompts for injection and safety risks | GitHub |
|
|
153
|
+
| agent-governance | Governance policies for AI agents | GitHub |
|
|
154
|
+
| webapp-testing | Web application testing strategies | Anthropic |
|
|
155
|
+
| polyglot-test-agent | Testing across multiple languages/frameworks | GitHub |
|
|
156
|
+
| doublecheck | Verify work by reviewing own output | GitHub |
|
|
157
|
+
| scoutqa-test | QA testing patterns and strategies | GitHub |
|
|
158
|
+
|
|
159
|
+
**Progression:** Filesystem → Snyk Agent Scan → GitHub PR review → Playwright E2E
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
### 6. Design & Visual
|
|
164
|
+
|
|
165
|
+
**Core:** UI/UX, diagrams, visual assets
|
|
166
|
+
|
|
167
|
+
#### MCPs
|
|
168
|
+
| Tool | Purpose | Trust |
|
|
169
|
+
|------|---------|-------|
|
|
170
|
+
| Playwright MCP | Visual testing, screenshot comparison | Official (29K★) |
|
|
171
|
+
|
|
172
|
+
#### Skills
|
|
173
|
+
| Skill | What It Teaches | Source |
|
|
174
|
+
|-------|----------------|--------|
|
|
175
|
+
| canvas-design | Visual design using canvas | Anthropic |
|
|
176
|
+
| brand-guidelines | Create and follow brand identity standards | Anthropic |
|
|
177
|
+
| theme-factory | Generate consistent UI themes | Anthropic |
|
|
178
|
+
| algorithmic-art | Generate art through algorithms | Anthropic |
|
|
179
|
+
| excalidraw-diagram-generator | Generate Excalidraw architecture diagrams | GitHub |
|
|
180
|
+
| penpot-uiux-design | UI/UX design using Penpot (open-source Figma alt) | GitHub |
|
|
181
|
+
|
|
182
|
+
**Progression:** Playwright (visual testing) → Excalidraw skill → Canvas design skill
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
### 7. Research & Knowledge
|
|
187
|
+
|
|
188
|
+
**Core:** Literature review, fact-checking, source evaluation, synthesis
|
|
189
|
+
|
|
190
|
+
#### MCPs
|
|
191
|
+
| Tool | Purpose | Trust |
|
|
192
|
+
|------|---------|-------|
|
|
193
|
+
| Brave Search MCP | Web search with privacy | Official (775★) |
|
|
194
|
+
| Fetch MCP | Read web pages, extract content | Reference |
|
|
195
|
+
| Memory MCP | Persistent knowledge graph | Reference |
|
|
196
|
+
| arXiv MCP | Academic paper search & retrieval | Verified Community (2.4K★) |
|
|
197
|
+
| Firecrawl MCP | Deep web crawling, site analysis | Official (5.8K★) |
|
|
198
|
+
|
|
199
|
+
#### Skills
|
|
200
|
+
| Skill | What It Teaches | Source |
|
|
201
|
+
|-------|----------------|--------|
|
|
202
|
+
| remember | Persistent memory patterns for agents | GitHub |
|
|
203
|
+
| context-map | Map context relationships in complex domains | GitHub |
|
|
204
|
+
| create-technical-spike | Time-boxed research investigations | GitHub |
|
|
205
|
+
| first-ask | Ask clarifying questions before acting | GitHub |
|
|
206
|
+
| what-context-needed | Determine what context is needed for a task | GitHub |
|
|
207
|
+
|
|
208
|
+
**Progression:** Brave Search + Fetch → Memory → arXiv → Firecrawl
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
### 8. Writing & Content
|
|
213
|
+
|
|
214
|
+
**Core:** Technical writing, copywriting, documentation, editing
|
|
215
|
+
|
|
216
|
+
#### MCPs
|
|
217
|
+
| Tool | Purpose | Trust |
|
|
218
|
+
|------|---------|-------|
|
|
219
|
+
| Filesystem MCP | Read/write documents | Reference |
|
|
220
|
+
| Notion MCP | Knowledge base, docs, wikis | Official (4K★) |
|
|
221
|
+
| ElevenLabs MCP | Text-to-speech for content | Official (1.3K★) |
|
|
222
|
+
|
|
223
|
+
#### Skills
|
|
224
|
+
| Skill | What It Teaches | Source |
|
|
225
|
+
|-------|----------------|--------|
|
|
226
|
+
| doc-coauthoring | Collaborative document writing | Anthropic |
|
|
227
|
+
| docx | Word document creation with formatting | Anthropic |
|
|
228
|
+
| pdf | PDF document handling and extraction | Anthropic |
|
|
229
|
+
| pptx | PowerPoint presentation creation | Anthropic |
|
|
230
|
+
| documentation-writer | Technical documentation best practices | GitHub |
|
|
231
|
+
| create-readme | Generate comprehensive READMEs | GitHub |
|
|
232
|
+
| create-specification | Write technical specifications | GitHub |
|
|
233
|
+
| convert-plaintext-to-md | Convert unstructured text to markdown | GitHub |
|
|
234
|
+
| comment-code-generate-a-tutorial | Turn code into step-by-step tutorials | GitHub |
|
|
235
|
+
|
|
236
|
+
**Progression:** Filesystem + Notion → ElevenLabs
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
### 9. Communication & Collaboration
|
|
241
|
+
|
|
242
|
+
**Core:** Team coordination, status updates, async communication
|
|
243
|
+
|
|
244
|
+
#### MCPs
|
|
245
|
+
| Tool | Purpose | Trust |
|
|
246
|
+
|------|---------|-------|
|
|
247
|
+
| Notion MCP | Shared documentation | Official (4K★) |
|
|
248
|
+
| Atlassian MCP | Jira issues, Confluence docs | Official (436★) |
|
|
249
|
+
|
|
250
|
+
#### Skills
|
|
251
|
+
| Skill | What It Teaches | Source |
|
|
252
|
+
|-------|----------------|--------|
|
|
253
|
+
| internal-comms | Internal communication writing | Anthropic |
|
|
254
|
+
| slack-gif-creator | Create engaging Slack messages with GIFs | Anthropic |
|
|
255
|
+
| meeting-minutes | Capture and structure meeting notes | GitHub |
|
|
256
|
+
| mentoring-juniors | Guide junior developers effectively | GitHub |
|
|
257
|
+
| make-repo-contribution | Contribute to open-source repositories | GitHub |
|
|
258
|
+
|
|
259
|
+
**Progression:** Notion → Atlassian
|
|
260
|
+
|
|
261
|
+
---
|
|
262
|
+
|
|
263
|
+
### 10. Project Management
|
|
264
|
+
|
|
265
|
+
**Core:** Planning, task tracking, roadmapping, resource allocation
|
|
266
|
+
|
|
267
|
+
#### MCPs
|
|
268
|
+
| Tool | Purpose | Trust |
|
|
269
|
+
|------|---------|-------|
|
|
270
|
+
| GitHub MCP | Issues, milestones, project boards | Official (28K★) |
|
|
271
|
+
| Notion MCP | Project wikis, databases | Official (4K★) |
|
|
272
|
+
| Atlassian MCP | Jira sprints, boards | Official (436★) |
|
|
273
|
+
| Memory MCP | Track decisions across sessions | Reference |
|
|
274
|
+
|
|
275
|
+
#### Skills
|
|
276
|
+
| Skill | What It Teaches | Source |
|
|
277
|
+
|-------|----------------|--------|
|
|
278
|
+
| breakdown-epic-pm | Break epics into manageable stories | GitHub |
|
|
279
|
+
| breakdown-plan | Decompose plans into actionable tasks | GitHub |
|
|
280
|
+
| prd | Write product requirements documents | GitHub |
|
|
281
|
+
| create-github-issues-feature-from-implementation-plan | Convert plans to trackable GitHub issues | GitHub |
|
|
282
|
+
| github-issues | Effective GitHub issue management | GitHub |
|
|
283
|
+
| create-architectural-decision-record | Document architecture decisions (ADRs) | GitHub |
|
|
284
|
+
| project-workflow-analysis-blueprint-generator | Analyze and document project workflows | GitHub |
|
|
285
|
+
|
|
286
|
+
**Progression:** GitHub issues + Notion → Atlassian → Memory
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
### 11. Media & Audio Production
|
|
291
|
+
|
|
292
|
+
**Core:** Audio editing, music, podcasts, sound design
|
|
293
|
+
|
|
294
|
+
#### MCPs
|
|
295
|
+
| Tool | Purpose | Trust |
|
|
296
|
+
|------|---------|-------|
|
|
297
|
+
| ElevenLabs MCP | Text-to-speech voice generation | Official (1.3K★) |
|
|
298
|
+
|
|
299
|
+
#### Skills
|
|
300
|
+
| Skill | What It Teaches | Source |
|
|
301
|
+
|-------|----------------|--------|
|
|
302
|
+
| transloadit-media-processing | Media processing (video, OCR, 86+ formats) | GitHub |
|
|
303
|
+
| image-manipulation-image-magick | Image manipulation with ImageMagick | GitHub |
|
|
304
|
+
|
|
305
|
+
**Progression:** ElevenLabs
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
### 12. Database & Backend
|
|
310
|
+
|
|
311
|
+
**Core:** Schema design, query optimization, migrations, data modeling
|
|
312
|
+
|
|
313
|
+
#### MCPs
|
|
314
|
+
| Tool | Purpose | Trust |
|
|
315
|
+
|------|---------|-------|
|
|
316
|
+
| MongoDB MCP | Document database operations | Official (959★) |
|
|
317
|
+
| Chroma MCP | Vector database for embeddings | Official (515★) |
|
|
318
|
+
| Stripe MCP | Payment integration & data | Official (1.4K★) |
|
|
319
|
+
|
|
320
|
+
#### Skills
|
|
321
|
+
| Skill | What It Teaches | Source |
|
|
322
|
+
|-------|----------------|--------|
|
|
323
|
+
| postgresql-optimization | PostgreSQL query and schema optimization | GitHub |
|
|
324
|
+
| postgresql-code-review | Review PostgreSQL code for issues | GitHub |
|
|
325
|
+
| cosmosdb-datamodeling | NoSQL data modeling patterns | GitHub |
|
|
326
|
+
| ef-core | Entity Framework Core patterns | GitHub |
|
|
327
|
+
| creating-oracle-to-postgres-master-migration-plan | Database migration planning | GitHub |
|
|
328
|
+
|
|
329
|
+
**Progression:** MongoDB → Chroma → Stripe
|
|
330
|
+
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
### 13. Cloud & Platform
|
|
334
|
+
|
|
335
|
+
**Core:** Cloud services, serverless, edge computing, scaling
|
|
336
|
+
|
|
337
|
+
#### MCPs
|
|
338
|
+
| Tool | Purpose | Trust |
|
|
339
|
+
|------|---------|-------|
|
|
340
|
+
| AWS MCP Servers | Lambda, S3, EC2, full AWS suite | Official (8.5K★) |
|
|
341
|
+
| Cloudflare MCP | Workers, edge, CDN, DNS | Official (3.5K★) |
|
|
342
|
+
| Terraform MCP | Multi-cloud IaC | Official (1.3K★) |
|
|
343
|
+
| Docker MCP Gateway | Container orchestration | Official (1.3K★) |
|
|
344
|
+
|
|
345
|
+
#### Skills
|
|
346
|
+
| Skill | What It Teaches | Source |
|
|
347
|
+
|-------|----------------|--------|
|
|
348
|
+
| azure-static-web-apps | Deploy static web apps to cloud | GitHub |
|
|
349
|
+
| azure-resource-visualizer | Visualize cloud resource relationships | GitHub |
|
|
350
|
+
| azure-role-selector | Select appropriate cloud IAM roles | GitHub |
|
|
351
|
+
| containerize-aspnetcore | Containerize applications for cloud | GitHub |
|
|
352
|
+
|
|
353
|
+
**Progression:** Docker → AWS/Cloudflare → Terraform
|
|
354
|
+
|
|
355
|
+
---
|
|
356
|
+
|
|
357
|
+
### 14. Marketing & SEO
|
|
358
|
+
|
|
359
|
+
**Core:** SEO, competitor analysis, content strategy, social media
|
|
360
|
+
|
|
361
|
+
#### MCPs
|
|
362
|
+
| Tool | Purpose | Trust |
|
|
363
|
+
|------|---------|-------|
|
|
364
|
+
| Firecrawl MCP | SEO audit, competitor crawling | Official (5.8K★) |
|
|
365
|
+
| Brave Search MCP | Market research, trend analysis | Official (775★) |
|
|
366
|
+
| Notion MCP | Content calendar, strategy docs | Official (4K★) |
|
|
367
|
+
|
|
368
|
+
#### Skills
|
|
369
|
+
| Skill | What It Teaches | Source |
|
|
370
|
+
|-------|----------------|--------|
|
|
371
|
+
| napkin | Quick ideation and concept sketching | GitHub |
|
|
372
|
+
| sponsor-finder | Find potential sponsors and partners | GitHub |
|
|
373
|
+
| boost-prompt | Improve and refine prompts for better output | GitHub |
|
|
374
|
+
|
|
375
|
+
**Progression:** Brave Search → Firecrawl → Notion
|
|
376
|
+
|
|
377
|
+
---
|
|
378
|
+
|
|
379
|
+
### 15. Science & Life Sciences
|
|
380
|
+
|
|
381
|
+
**Core:** Research, data analysis, literature review, bioinformatics
|
|
382
|
+
|
|
383
|
+
#### MCPs
|
|
384
|
+
| Tool | Purpose | Trust |
|
|
385
|
+
|------|---------|-------|
|
|
386
|
+
| arXiv MCP | Academic paper search & retrieval | Verified Community (2.4K★) |
|
|
387
|
+
| Fetch MCP | Access PubMed, NCBI, and other APIs | Reference |
|
|
388
|
+
| Memory MCP | Track research findings across sessions | Reference |
|
|
389
|
+
|
|
390
|
+
#### Skills
|
|
391
|
+
No dedicated science skills yet. Uses Research & Knowledge (Section 7) and Data Analysis (Section 3) skills.
|
|
392
|
+
|
|
393
|
+
**Progression:** Fetch (PubMed API) + arXiv → Memory
|
|
394
|
+
|
|
395
|
+
---
|
|
396
|
+
|
|
397
|
+
### 16. Finance & Commerce
|
|
398
|
+
|
|
399
|
+
**Core:** Financial data, payments, pricing, market analysis
|
|
400
|
+
|
|
401
|
+
#### MCPs
|
|
402
|
+
| Tool | Purpose | Trust |
|
|
403
|
+
|------|---------|-------|
|
|
404
|
+
| Stripe MCP | Payment integration & billing | Official (1.4K★) |
|
|
405
|
+
| Brave Search MCP | Market research, financial news | Official (775★) |
|
|
406
|
+
| Fetch MCP | Access financial APIs directly | Reference |
|
|
407
|
+
|
|
408
|
+
#### Skills
|
|
409
|
+
| Skill | What It Teaches | Source |
|
|
410
|
+
|-------|----------------|--------|
|
|
411
|
+
| azure-pricing | Cloud pricing analysis and estimation | GitHub |
|
|
412
|
+
| datanalysis-credit-risk | Financial risk data analysis | GitHub |
|
|
413
|
+
|
|
414
|
+
**Progression:** Fetch (financial APIs) → Brave Search → Stripe
|
|
415
|
+
|
|
416
|
+
---
|
|
417
|
+
|
|
418
|
+
### 17. AI & Machine Learning
|
|
419
|
+
|
|
420
|
+
**Core:** Model training, prompt engineering, agent orchestration
|
|
421
|
+
|
|
422
|
+
#### MCPs
|
|
423
|
+
| Tool | Purpose | Trust |
|
|
424
|
+
|------|---------|-------|
|
|
425
|
+
| Sequential Thinking MCP | Complex multi-step reasoning | Reference |
|
|
426
|
+
| Memory MCP | Persistent knowledge across sessions | Reference |
|
|
427
|
+
| Chroma MCP | Vector database for embeddings | Official (515★) |
|
|
428
|
+
|
|
429
|
+
#### Skills
|
|
430
|
+
| Skill | What It Teaches | Source |
|
|
431
|
+
|-------|----------------|--------|
|
|
432
|
+
| claude-api | Build applications with the Claude API | Anthropic |
|
|
433
|
+
| mcp-builder | Build MCP servers from scratch | Anthropic |
|
|
434
|
+
| skill-creator | Create new agent skills (SKILL.md) | Anthropic |
|
|
435
|
+
| model-recommendation | Choose the right AI model for a task | GitHub |
|
|
436
|
+
| agentic-eval | Evaluate agentic AI systems | GitHub |
|
|
437
|
+
| prompt-builder | Craft effective prompts | GitHub |
|
|
438
|
+
| finalize-agent-prompt | Polish and finalize agent system prompts | GitHub |
|
|
439
|
+
| structured-autonomy-plan | Plan structured autonomous agent workflows | GitHub |
|
|
440
|
+
|
|
441
|
+
**Progression:** Sequential Thinking + Memory → Chroma
|
|
442
|
+
|
|
443
|
+
---
|
|
444
|
+
|
|
445
|
+
### 18. Culture & Creative
|
|
446
|
+
|
|
447
|
+
**Core:** Art curation, cultural knowledge, entertainment, creative projects
|
|
448
|
+
|
|
449
|
+
#### MCPs
|
|
450
|
+
| Tool | Purpose | Trust |
|
|
451
|
+
|------|---------|-------|
|
|
452
|
+
| Fetch MCP | Access museum APIs (Met, Smithsonian, etc.) | Reference |
|
|
453
|
+
| ElevenLabs MCP | Audio for creative projects | Official (1.3K★) |
|
|
454
|
+
|
|
455
|
+
#### Skills
|
|
456
|
+
| Skill | What It Teaches | Source |
|
|
457
|
+
|-------|----------------|--------|
|
|
458
|
+
| algorithmic-art | Generate art through code and algorithms | Anthropic |
|
|
459
|
+
| game-engine | Game development patterns and engines | GitHub |
|
|
460
|
+
| repo-story-time | Tell the story of a codebase's evolution | GitHub |
|
|
461
|
+
| noob-mode | Explain complex topics simply | GitHub |
|
|
462
|
+
|
|
463
|
+
**Progression:** Fetch (museum APIs) → ElevenLabs
|
|
464
|
+
|
|
465
|
+
---
|
|
466
|
+
|
|
467
|
+
## Part 2: Level-Up MCP Tool List (69 tools)
|
|
468
|
+
|
|
469
|
+
These are the tools built into the Level-Up server itself. Agents call these to track work, manage their profile, and earn XP.
|
|
470
|
+
|
|
471
|
+
### Section 1 — Users (13 tools)
|
|
472
|
+
| Tool | Purpose |
|
|
473
|
+
|------|---------|
|
|
474
|
+
| `levelup_register_user` | Register a new user profile |
|
|
475
|
+
| `levelup_get_user_profile` | Fetch public profile with rank and class levels |
|
|
476
|
+
| `levelup_get_user_progress` | Get main level/XP and class progression |
|
|
477
|
+
| `levelup_find_user` | Find user by username, handle, profile code, or identity |
|
|
478
|
+
| `levelup_generate_link_code` | Generate code for cross-platform identity linking |
|
|
479
|
+
| `levelup_redeem_link_code` | Redeem link code to connect accounts |
|
|
480
|
+
| `levelup_link_identity` | Link a new identity provider to an existing user |
|
|
481
|
+
| `levelup_request_otp` | Send OTP via email (deferred — no mail service yet) |
|
|
482
|
+
| `levelup_verify_otp` | Verify OTP and authenticate user |
|
|
483
|
+
| `levelup_get_onboarding_status` | Check user's onboarding progress |
|
|
484
|
+
| `levelup_update_user_profile` | Update username, handle, email, metadata |
|
|
485
|
+
| `levelup_infer_task_type` | Categorize a work description into a task type |
|
|
486
|
+
| `levelup_merge_profiles` | Merge two user profiles (consolidate XP and progress) |
|
|
487
|
+
|
|
488
|
+
### Section 2 — Agents (4 tools)
|
|
489
|
+
| Tool | Purpose |
|
|
490
|
+
|------|---------|
|
|
491
|
+
| `levelup_register_agent` | Create a new AI agent with owner and integrity score |
|
|
492
|
+
| `levelup_get_agent_profile` | Get agent's profile with level, XP, and skills |
|
|
493
|
+
| `levelup_list_user_agents` | List all agents owned by a user |
|
|
494
|
+
| `levelup_update_agent` | Update agent profile (name, description, system prompt) |
|
|
495
|
+
|
|
496
|
+
### Section 3 — Skills (6 tools)
|
|
497
|
+
| Tool | Purpose |
|
|
498
|
+
|------|---------|
|
|
499
|
+
| `levelup_add_agent_skill` | Install a skill on an agent (mcp_installed gives instant proficiency 1) |
|
|
500
|
+
| `levelup_get_agent_skills` | Get agent's proficiency levels across all skills |
|
|
501
|
+
| `levelup_list_skills` | Browse the full skill catalog (106 skills, 18 categories) |
|
|
502
|
+
| `levelup_list_skill_categories` | List all 18 ability categories |
|
|
503
|
+
| `levelup_suggest_skill` | Get skill suggestions based on recent task history |
|
|
504
|
+
| `levelup_get_skill_progress` | Track agent's progress toward next skill level |
|
|
505
|
+
|
|
506
|
+
### Section 4 — Tasks (10 tools)
|
|
507
|
+
| Tool | Purpose |
|
|
508
|
+
|------|---------|
|
|
509
|
+
| `levelup_start_task` | Begin tracking a new task (creates task record) |
|
|
510
|
+
| `levelup_update_task` | Add notes, change difficulty/output_type while in progress |
|
|
511
|
+
| `levelup_complete_task` | Mark task complete and trigger XP award via RPC |
|
|
512
|
+
| `levelup_fail_task` | Mark task failed (awards 15% consolation XP) |
|
|
513
|
+
| `levelup_get_task` | Fetch a single task's full details and status |
|
|
514
|
+
| `levelup_list_tasks` | List tasks with filtering (user, agent, status, date range) |
|
|
515
|
+
| `levelup_list_task_types` | Show all 82 task type definitions with base XP |
|
|
516
|
+
| `levelup_add_task_evidence` | Attach artifacts or evidence to a task |
|
|
517
|
+
| `levelup_get_task_log` | Get changelog of all updates to a task |
|
|
518
|
+
| `levelup_resume_or_start` | Resume incomplete task or auto-start based on context |
|
|
519
|
+
|
|
520
|
+
### Section 5 — Ratings (7 tools)
|
|
521
|
+
| Tool | Purpose |
|
|
522
|
+
|------|---------|
|
|
523
|
+
| `levelup_capture_expectations` | Record expected outcomes before task execution |
|
|
524
|
+
| `levelup_submit_agent_evaluation` | Rate agent performance (clarity, technical skill, reliability) |
|
|
525
|
+
| `levelup_request_system_evaluation` | Request AI evaluation of task quality |
|
|
526
|
+
| `levelup_submit_test_results` | Log automated test results and pass/fail ratio |
|
|
527
|
+
| `levelup_get_task_quality` | Fetch quality score and evaluations for a task |
|
|
528
|
+
| `levelup_submit_calibration_review` | Compare evaluator's rating against system's |
|
|
529
|
+
| `levelup_get_calibration_queue` | List tasks awaiting calibration review |
|
|
530
|
+
|
|
531
|
+
### Section 6 — Quests (12 tools) — *Not active yet*
|
|
532
|
+
| Tool | Purpose |
|
|
533
|
+
|------|---------|
|
|
534
|
+
| `levelup_process_weekly_bonuses` | Run weekly bonus calculation (cron job) |
|
|
535
|
+
| `levelup_get_weekly_bonus_summary` | Show user's progress on weekly criteria |
|
|
536
|
+
| `levelup_propose_bonus_criteria` | Suggest new weekly bonus category |
|
|
537
|
+
| `levelup_approve_bonus_criteria` | Admin: approve or reject bonus criteria |
|
|
538
|
+
| `levelup_create_quest` | Create a multi-step quest with rewards |
|
|
539
|
+
| `levelup_get_quest` | Fetch quest details and participation status |
|
|
540
|
+
| `levelup_list_quests` | List active quests with filters |
|
|
541
|
+
| `levelup_join_quest` | Enroll user/agent in a quest |
|
|
542
|
+
| `levelup_update_quest_progress` | Mark quest milestone complete |
|
|
543
|
+
| `levelup_complete_quest` | Finish quest and award XP |
|
|
544
|
+
| `levelup_verify_quest` | Admin: validate quest completion |
|
|
545
|
+
| `levelup_create_community_quest` | Create user-proposed quest |
|
|
546
|
+
|
|
547
|
+
### Section 7 — Metrics (3 tools)
|
|
548
|
+
| Tool | Purpose |
|
|
549
|
+
|------|---------|
|
|
550
|
+
| `levelup_report_metrics` | Log productivity metrics (lines coded, tasks completed, etc.) |
|
|
551
|
+
| `levelup_import_history` | Bulk import historical task data from external sources |
|
|
552
|
+
| `levelup_get_metrics_summary` | Get aggregate metrics over a time period |
|
|
553
|
+
|
|
554
|
+
### Section 8 — XP & Progression (5 tools)
|
|
555
|
+
| Tool | Purpose |
|
|
556
|
+
|------|---------|
|
|
557
|
+
| `levelup_get_xp_history` | Show XP ledger (all transactions) for user/agent |
|
|
558
|
+
| `levelup_get_xp_summary` | Total XP earned, XP by task type, XP by recipient |
|
|
559
|
+
| `levelup_get_split_rules` | Show how XP is divided between performers |
|
|
560
|
+
| `levelup_get_xp_projection` | Estimate XP earned and level timeline |
|
|
561
|
+
| `levelup_get_weekly_recap` | Show weekly XP earned and top earners |
|
|
562
|
+
|
|
563
|
+
### Section 9 — Leaderboards (1 tool)
|
|
564
|
+
| Tool | Purpose |
|
|
565
|
+
|------|---------|
|
|
566
|
+
| `levelup_get_leaderboard` | Rank users/agents by level or XP (with class/tier filters) |
|
|
567
|
+
|
|
568
|
+
### Section 10 — Leveling (3 tools)
|
|
569
|
+
| Tool | Purpose |
|
|
570
|
+
|------|---------|
|
|
571
|
+
| `levelup_get_level_info` | Get current level, XP to next level, rank name |
|
|
572
|
+
| `levelup_get_level_requirements` | Show XP required for each level (1–30) |
|
|
573
|
+
| `levelup_get_next_unlock` | Show what skill/achievement unlocks at next level |
|
|
574
|
+
|
|
575
|
+
### Section 11 — Achievements (2 tools)
|
|
576
|
+
| Tool | Purpose |
|
|
577
|
+
|------|---------|
|
|
578
|
+
| `levelup_get_achievements` | List earned + available achievements |
|
|
579
|
+
| `levelup_scan_achievements` | Auto-detect and credit earned achievements |
|
|
580
|
+
|
|
581
|
+
### Section 12 — Admin (5 tools)
|
|
582
|
+
| Tool | Purpose |
|
|
583
|
+
|------|---------|
|
|
584
|
+
| `levelup_create_task_type` | Add new task type definition |
|
|
585
|
+
| `levelup_suggest_task_type` | AI-suggest task type for a work description |
|
|
586
|
+
| `levelup_create_skill` | Define new skill in a category |
|
|
587
|
+
| `levelup_create_split_rule` | Configure XP split for a performer type combo |
|
|
588
|
+
| `levelup_set_xp_config` | Configure system parameters (multipliers, bonuses, caps) |
|
|
589
|
+
|
|
590
|
+
### Section 13 — System (4 tools)
|
|
591
|
+
| Tool | Purpose |
|
|
592
|
+
|------|---------|
|
|
593
|
+
| `levelup_process_metrics` | Internal: aggregate metrics and trigger bonus calculations |
|
|
594
|
+
| `levelup_snapshot_agent` | Save agent's current state for audit trail |
|
|
595
|
+
| `levelup_check_level_up` | Check if entity qualifies for promotion (triggers RPC) |
|
|
596
|
+
| `levelup_whoami` | Return authenticated user/agent identity and context |
|
|
597
|
+
|
|
598
|
+
### Onboarding (2 tools)
|
|
599
|
+
| Tool | Purpose |
|
|
600
|
+
|------|---------|
|
|
601
|
+
| `levelup_bootstrap` | Initialize Level-Up for first use |
|
|
602
|
+
| `levelup_setup_wizard` | Interactive onboarding (create user, agent, task types) |
|
|
603
|
+
|
|
604
|
+
### Growth Planning (2 tools)
|
|
605
|
+
| Tool | Purpose |
|
|
606
|
+
|------|---------|
|
|
607
|
+
| `levelup_get_growth_plan` | Personalized skill and achievement roadmap |
|
|
608
|
+
| `levelup_browse_skillsets` | Show recommended skill combinations for roles |
|
|
609
|
+
|
|
610
|
+
---
|
|
611
|
+
|
|
612
|
+
## Part 3: Rank System
|
|
613
|
+
|
|
614
|
+
### User Ranks
|
|
615
|
+
| Level Range | Rank |
|
|
616
|
+
|-------------|------|
|
|
617
|
+
| 1–5 | Analyst |
|
|
618
|
+
| 6–10 | Tactician |
|
|
619
|
+
| 11–15 | Strategist |
|
|
620
|
+
| 16–20 | Commander |
|
|
621
|
+
| 21–25 | Grandmaster |
|
|
622
|
+
| 26–30 | Supreme |
|
|
623
|
+
|
|
624
|
+
### Agent Ranks
|
|
625
|
+
| Level Range | Rank |
|
|
626
|
+
|-------------|------|
|
|
627
|
+
| 1–5 | Novice |
|
|
628
|
+
| 6–10 | Pathfinder |
|
|
629
|
+
| 11–15 | Enlightened |
|
|
630
|
+
| 16–20 | Paragon |
|
|
631
|
+
| 21–25 | Transcendent |
|
|
632
|
+
| 26–30 | Celestial |
|
|
633
|
+
|
|
634
|
+
### Class Tracks (Users)
|
|
635
|
+
Trainer · Orchestrator · Partner — each has its own XP pool and level progression.
|
|
636
|
+
|
|
637
|
+
---
|
|
638
|
+
|
|
639
|
+
## Part 4: MCP Trust Summary
|
|
640
|
+
|
|
641
|
+
### Official (published by platform owner)
|
|
642
|
+
| MCP | Stars |
|
|
643
|
+
|-----|-------|
|
|
644
|
+
| GitHub MCP | 28K |
|
|
645
|
+
| Playwright MCP | 29K |
|
|
646
|
+
| AWS MCP | 8.5K |
|
|
647
|
+
| Firecrawl MCP | 5.8K |
|
|
648
|
+
| Notion MCP | 4K |
|
|
649
|
+
| Cloudflare MCP | 3.5K |
|
|
650
|
+
| Grafana MCP | 2.5K |
|
|
651
|
+
| Snyk Agent Scan | 1.9K |
|
|
652
|
+
| Stripe MCP | 1.4K |
|
|
653
|
+
| Docker MCP Gateway | 1.3K |
|
|
654
|
+
| Terraform MCP | 1.3K |
|
|
655
|
+
| ElevenLabs MCP | 1.3K |
|
|
656
|
+
| MongoDB MCP | 959 |
|
|
657
|
+
| Brave Search MCP | 775 |
|
|
658
|
+
| Chroma MCP | 515 |
|
|
659
|
+
| Atlassian MCP | 436 |
|
|
660
|
+
|
|
661
|
+
### Reference (MCP org — modelcontextprotocol/servers)
|
|
662
|
+
Filesystem · Git · Fetch · Memory · Sequential Thinking
|
|
663
|
+
|
|
664
|
+
### Verified Community (500+ stars)
|
|
665
|
+
| MCP | Stars |
|
|
666
|
+
|-----|-------|
|
|
667
|
+
| Desktop Commander | 5.7K |
|
|
668
|
+
| arXiv MCP | 2.4K |
|
|
669
|
+
|
|
670
|
+
---
|
|
671
|
+
|
|
672
|
+
*Generated from Level-Up MCP Server v0.3.3 — docs/recommended-skillsets.md and src/tools/*
|