loadout-ai 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/LICENSE +21 -0
  2. package/MASTER_PLAN.md +1711 -0
  3. package/README.md +453 -0
  4. package/SECURITY.md +18 -0
  5. package/SIMPLE_PLAN.md +44 -0
  6. package/catalog/discovered.json +10469 -0
  7. package/catalog/packages.json +1150 -0
  8. package/dashboard/app.js +607 -0
  9. package/dashboard/index.html +249 -0
  10. package/dashboard/styles.css +384 -0
  11. package/dist/src/cli.js +2735 -0
  12. package/dist/src/core/active-policy.js +233 -0
  13. package/dist/src/core/active-set.js +382 -0
  14. package/dist/src/core/adapters.js +254 -0
  15. package/dist/src/core/adopt.js +92 -0
  16. package/dist/src/core/agent-health-score.js +475 -0
  17. package/dist/src/core/agent-inspection.js +152 -0
  18. package/dist/src/core/agent-versions.js +131 -0
  19. package/dist/src/core/api.js +90 -0
  20. package/dist/src/core/atomic-file.js +22 -0
  21. package/dist/src/core/audit.js +174 -0
  22. package/dist/src/core/benchmark-campaign.js +496 -0
  23. package/dist/src/core/benchmark-evidence.js +458 -0
  24. package/dist/src/core/benchmark-fixtures.js +1157 -0
  25. package/dist/src/core/benchmark-runner.js +301 -0
  26. package/dist/src/core/benchmark-trust.js +795 -0
  27. package/dist/src/core/canary.js +77 -0
  28. package/dist/src/core/candidate-intelligence.js +661 -0
  29. package/dist/src/core/catalog-coverage.js +85 -0
  30. package/dist/src/core/catalog-install.js +186 -0
  31. package/dist/src/core/catalog-release.js +286 -0
  32. package/dist/src/core/catalog.js +327 -0
  33. package/dist/src/core/codex-mcp.js +122 -0
  34. package/dist/src/core/community.js +86 -0
  35. package/dist/src/core/compatibility-intelligence.js +465 -0
  36. package/dist/src/core/completion.js +160 -0
  37. package/dist/src/core/components.js +138 -0
  38. package/dist/src/core/conversion.js +56 -0
  39. package/dist/src/core/credentials.js +377 -0
  40. package/dist/src/core/demo.js +136 -0
  41. package/dist/src/core/diff.js +83 -0
  42. package/dist/src/core/discovery-connector.js +165 -0
  43. package/dist/src/core/doctor.js +95 -0
  44. package/dist/src/core/ecosystem-import.js +1072 -0
  45. package/dist/src/core/evaluate.js +72 -0
  46. package/dist/src/core/file-lock.js +140 -0
  47. package/dist/src/core/freshness-alerts.js +230 -0
  48. package/dist/src/core/github-discovery.js +97 -0
  49. package/dist/src/core/github.js +148 -0
  50. package/dist/src/core/head-to-head.js +437 -0
  51. package/dist/src/core/health-score-evidence.js +169 -0
  52. package/dist/src/core/health.js +129 -0
  53. package/dist/src/core/improve.js +223 -0
  54. package/dist/src/core/install.js +233 -0
  55. package/dist/src/core/intelligence-feed-build.js +59 -0
  56. package/dist/src/core/intelligence-feed.js +353 -0
  57. package/dist/src/core/loadout-badge.js +55 -0
  58. package/dist/src/core/loadout-card.js +87 -0
  59. package/dist/src/core/manifest.js +307 -0
  60. package/dist/src/core/mcp-recipes.js +419 -0
  61. package/dist/src/core/mcp-registry-discovery.js +455 -0
  62. package/dist/src/core/mcp.js +287 -0
  63. package/dist/src/core/model-config.js +102 -0
  64. package/dist/src/core/observations.js +87 -0
  65. package/dist/src/core/outcomes.js +164 -0
  66. package/dist/src/core/package.js +225 -0
  67. package/dist/src/core/paths.js +214 -0
  68. package/dist/src/core/portable.js +130 -0
  69. package/dist/src/core/private-discovery.js +45 -0
  70. package/dist/src/core/profiles.js +255 -0
  71. package/dist/src/core/provenance.js +278 -0
  72. package/dist/src/core/ranking.js +104 -0
  73. package/dist/src/core/recommend.js +181 -0
  74. package/dist/src/core/registry-api.js +97 -0
  75. package/dist/src/core/registry.js +316 -0
  76. package/dist/src/core/release-claims.js +175 -0
  77. package/dist/src/core/remove.js +122 -0
  78. package/dist/src/core/review-queue.js +200 -0
  79. package/dist/src/core/runtime-tool-recipe.js +315 -0
  80. package/dist/src/core/runtime-tools.js +453 -0
  81. package/dist/src/core/safety.js +234 -0
  82. package/dist/src/core/sandbox.js +78 -0
  83. package/dist/src/core/scheduler.js +264 -0
  84. package/dist/src/core/share-report.js +85 -0
  85. package/dist/src/core/signing.js +115 -0
  86. package/dist/src/core/skill-compare.js +239 -0
  87. package/dist/src/core/skill-inventory.js +193 -0
  88. package/dist/src/core/skill-security.js +340 -0
  89. package/dist/src/core/skills-sh-discovery.js +336 -0
  90. package/dist/src/core/skills.js +208 -0
  91. package/dist/src/core/snapshot.js +210 -0
  92. package/dist/src/core/source.js +305 -0
  93. package/dist/src/core/state.js +300 -0
  94. package/dist/src/core/sync.js +348 -0
  95. package/dist/src/core/terminal.js +53 -0
  96. package/dist/src/core/transaction.js +211 -0
  97. package/dist/src/core/update-watch.js +39 -0
  98. package/dist/src/core/update.js +216 -0
  99. package/dist/src/core/upgrade.js +207 -0
  100. package/dist/src/dashboard.js +418 -0
  101. package/dist/src/shared/schemas.js +336 -0
  102. package/dist/src/shared/types.js +1 -0
  103. package/docs/ACTIVE_SET.md +53 -0
  104. package/docs/ACTIVE_SET_POLICY.md +45 -0
  105. package/docs/CANDIDATE_INTELLIGENCE.md +139 -0
  106. package/docs/CATALOG.md +78 -0
  107. package/docs/CATALOG_POLICY.md +41 -0
  108. package/docs/COMMUNITY_DISCOVERY.md +14 -0
  109. package/docs/COMPATIBILITY_POLICY.md +22 -0
  110. package/docs/CONVERSION_AND_SANDBOX.md +27 -0
  111. package/docs/CREDENTIAL_AND_UPDATE_POLICY.md +31 -0
  112. package/docs/DISCOVERED.md +280 -0
  113. package/docs/EVALUATION_PROTOCOL.md +40 -0
  114. package/docs/EVALUATION_PROTOCOL_V1.md +300 -0
  115. package/docs/FEATURE_TEST_MATRIX.md +802 -0
  116. package/docs/GITHUB_AUTHORIZATION.md +38 -0
  117. package/docs/HEAD_TO_HEAD_EVALUATION.md +79 -0
  118. package/docs/PROVENANCE_AND_COMPARISON.md +72 -0
  119. package/docs/PROVIDER_CONFIGURATION.md +45 -0
  120. package/docs/RELEASE_REVIEW.md +117 -0
  121. package/docs/SAFE_UPDATE_DEMO.md +25 -0
  122. package/docs/SCHEMA_DECISIONS.md +25 -0
  123. package/docs/TEAM_POLICY.md +18 -0
  124. package/docs/TESTING.md +190 -0
  125. package/package.json +82 -0
@@ -0,0 +1,1150 @@
1
+ [
2
+ {
3
+ "id": "superpowers",
4
+ "displayName": "Superpowers",
5
+ "repository": "obra/superpowers",
6
+ "description": "An agentic skills framework & software development methodology that works.",
7
+ "category": "engineering-workflow",
8
+ "tier": "stable",
9
+ "license": "MIT",
10
+ "components": ["skill", "plugin"],
11
+ "operatingSystems": ["windows", "macos", "linux"],
12
+ "stars": 254615,
13
+ "source": {
14
+ "type": "github",
15
+ "url": "https://github.com/obra/superpowers",
16
+ "defaultBranch": "main",
17
+ "commit": "d884ae04edebef577e82ff7c4e143debd0bbec99",
18
+ "evidencePaths": [
19
+ "skills/brainstorming/SKILL.md",
20
+ ".claude-plugin/plugin.json"
21
+ ],
22
+ "verifiedAt": "2026-07-14T18:17:03Z"
23
+ }
24
+ },
25
+ {
26
+ "id": "context7",
27
+ "displayName": "Context7",
28
+ "repository": "upstash/context7",
29
+ "description": "Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors.",
30
+ "category": "documentation",
31
+ "tier": "stable",
32
+ "license": "MIT",
33
+ "components": ["skill", "mcp", "plugin"],
34
+ "operatingSystems": ["windows", "macos", "linux"],
35
+ "stars": 59102,
36
+ "source": {
37
+ "type": "github",
38
+ "url": "https://github.com/upstash/context7",
39
+ "defaultBranch": "master",
40
+ "commit": "eb7ac502f6e83692363375d3088d550afa298a60",
41
+ "evidencePaths": [
42
+ "plugins/claude/context7/.mcp.json",
43
+ "plugins/claude/context7/skills/context7-mcp/SKILL.md",
44
+ "plugins/claude/context7/.claude-plugin/plugin.json"
45
+ ],
46
+ "verifiedAt": "2026-07-14T18:17:03Z"
47
+ }
48
+ },
49
+ {
50
+ "id": "playwright-mcp",
51
+ "displayName": "Playwright MCP",
52
+ "repository": "microsoft/playwright-mcp",
53
+ "description": "Playwright MCP server.",
54
+ "category": "browser-verification",
55
+ "tier": "official",
56
+ "license": "Apache-2.0",
57
+ "components": ["mcp"],
58
+ "operatingSystems": ["windows", "macos", "linux"],
59
+ "stars": 35074,
60
+ "source": {
61
+ "type": "github",
62
+ "url": "https://github.com/microsoft/playwright-mcp",
63
+ "defaultBranch": "main",
64
+ "commit": "5f8fc00210b27b4407c375b59cda4838045d429c",
65
+ "evidencePaths": ["README.md", "package.json", "index.js"],
66
+ "verifiedAt": "2026-07-14T18:17:03Z"
67
+ }
68
+ },
69
+ {
70
+ "id": "ui-ux-pro-max",
71
+ "displayName": "UI UX Pro Max",
72
+ "repository": "nextlevelbuilder/ui-ux-pro-max-skill",
73
+ "description": "An AI skill that provides design intelligence for building professional UI/UX across multiple platforms.",
74
+ "category": "frontend-design",
75
+ "tier": "stable",
76
+ "license": "MIT",
77
+ "components": ["skill", "plugin"],
78
+ "operatingSystems": ["windows", "macos", "linux"],
79
+ "stars": 105540,
80
+ "source": {
81
+ "type": "github",
82
+ "url": "https://github.com/nextlevelbuilder/ui-ux-pro-max-skill",
83
+ "defaultBranch": "main",
84
+ "commit": "fe3f65e5d0203341b40b7db80650501cd9de4961",
85
+ "evidencePaths": [
86
+ ".claude/skills/ui-ux-pro-max/SKILL.md",
87
+ ".claude-plugin/plugin.json"
88
+ ],
89
+ "verifiedAt": "2026-07-14T18:17:03Z"
90
+ }
91
+ },
92
+ {
93
+ "id": "github-mcp-server",
94
+ "displayName": "GitHub MCP Server",
95
+ "repository": "github/github-mcp-server",
96
+ "description": "GitHub's official MCP Server.",
97
+ "category": "source-control",
98
+ "tier": "official",
99
+ "license": "MIT",
100
+ "components": ["mcp"],
101
+ "operatingSystems": ["windows", "macos", "linux"],
102
+ "stars": 31437,
103
+ "source": {
104
+ "type": "github",
105
+ "url": "https://github.com/github/github-mcp-server",
106
+ "defaultBranch": "main",
107
+ "commit": "c36e4e4493c76eafe2c1a9cbc5272e8eede29189",
108
+ "evidencePaths": ["README.md", "cmd/github-mcp-server/main.go", "go.mod"],
109
+ "verifiedAt": "2026-07-14T18:17:03Z"
110
+ }
111
+ },
112
+ {
113
+ "id": "openai-skills",
114
+ "displayName": "OpenAI Skills Catalog",
115
+ "repository": "openai/skills",
116
+ "description": "Skills Catalog for Codex.",
117
+ "category": "agent-skills",
118
+ "tier": "official",
119
+ "license": "NOASSERTION",
120
+ "components": ["skill"],
121
+ "operatingSystems": ["windows", "macos", "linux"],
122
+ "stars": 23702,
123
+ "source": {
124
+ "type": "github",
125
+ "url": "https://github.com/openai/skills",
126
+ "defaultBranch": "main",
127
+ "commit": "49f948faa9258a0c61caceaf225e179651397431",
128
+ "evidencePaths": [
129
+ "skills/.curated/cli-creator/SKILL.md",
130
+ "skills/.curated/cloudflare-deploy/SKILL.md"
131
+ ],
132
+ "verifiedAt": "2026-07-14T18:17:03Z"
133
+ }
134
+ },
135
+ {
136
+ "id": "anthropic-skills",
137
+ "displayName": "Anthropic Skills",
138
+ "repository": "anthropics/skills",
139
+ "description": "Public repository for Agent Skills.",
140
+ "category": "agent-skills",
141
+ "tier": "official",
142
+ "license": "NOASSERTION",
143
+ "components": ["skill"],
144
+ "operatingSystems": ["windows", "macos", "linux"],
145
+ "stars": 161108,
146
+ "source": {
147
+ "type": "github",
148
+ "url": "https://github.com/anthropics/skills",
149
+ "defaultBranch": "main",
150
+ "commit": "9d2f1ae187231d8199c64b5b762e1bdf2244733d",
151
+ "evidencePaths": [
152
+ "skills/skill-creator/SKILL.md",
153
+ "skills/mcp-builder/SKILL.md"
154
+ ],
155
+ "verifiedAt": "2026-07-14T18:17:03Z"
156
+ }
157
+ },
158
+ {
159
+ "id": "wshobson-agents",
160
+ "displayName": "Agent Skills Marketplace",
161
+ "repository": "wshobson/agents",
162
+ "description": "Multi-harness agentic plugin marketplace for Claude Code, Codex CLI, Cursor, OpenCode, GitHub Copilot, and Gemini CLI.",
163
+ "category": "agent-skills",
164
+ "tier": "stable",
165
+ "license": "MIT",
166
+ "components": ["skill", "plugin"],
167
+ "operatingSystems": ["windows", "macos", "linux"],
168
+ "stars": 37906,
169
+ "source": {
170
+ "type": "github",
171
+ "url": "https://github.com/wshobson/agents",
172
+ "defaultBranch": "main",
173
+ "commit": "b6af3711058190e4b5c5274b9758498fe626ec5a",
174
+ "evidencePaths": [
175
+ "plugins/accessibility-compliance/.claude-plugin/plugin.json",
176
+ "plugins/accessibility-compliance/skills/wcag-audit-patterns/SKILL.md"
177
+ ],
178
+ "verifiedAt": "2026-07-14T18:17:03Z"
179
+ }
180
+ },
181
+ {
182
+ "id": "vercel-agent-skills",
183
+ "displayName": "Vercel Agent Skills",
184
+ "repository": "vercel-labs/agent-skills",
185
+ "description": "Vercel's official collection of agent skills.",
186
+ "category": "frontend-development",
187
+ "tier": "official",
188
+ "license": "NOASSERTION",
189
+ "components": ["skill"],
190
+ "operatingSystems": ["windows", "macos", "linux"],
191
+ "stars": 29060,
192
+ "source": {
193
+ "type": "github",
194
+ "url": "https://github.com/vercel-labs/agent-skills",
195
+ "defaultBranch": "main",
196
+ "commit": "f8a72b9603728bb92a217a879b7e62e43ad76c81",
197
+ "evidencePaths": [
198
+ "skills/react-best-practices/SKILL.md",
199
+ "skills/deploy-to-vercel/SKILL.md"
200
+ ],
201
+ "verifiedAt": "2026-07-14T18:17:03Z"
202
+ }
203
+ },
204
+ {
205
+ "id": "vercel-skills",
206
+ "displayName": "Vercel Skills",
207
+ "repository": "vercel-labs/skills",
208
+ "description": "The open agent skills tool - npx skills.",
209
+ "category": "skill-discovery",
210
+ "tier": "stable",
211
+ "license": "NOASSERTION",
212
+ "components": ["skill"],
213
+ "operatingSystems": ["windows", "macos", "linux"],
214
+ "stars": 26124,
215
+ "source": {
216
+ "type": "github",
217
+ "url": "https://github.com/vercel-labs/skills",
218
+ "defaultBranch": "main",
219
+ "commit": "5527c09adc367612b0bffd9c80e3bc28a6b01b6d",
220
+ "evidencePaths": ["skills/find-skills/SKILL.md"],
221
+ "verifiedAt": "2026-07-14T18:17:03Z"
222
+ }
223
+ },
224
+ {
225
+ "id": "cloudflare-mcp-server",
226
+ "displayName": "Cloudflare MCP Server",
227
+ "repository": "cloudflare/mcp-server-cloudflare",
228
+ "description": "Cloudflare MCP server collection.",
229
+ "category": "cloud-platform",
230
+ "tier": "official",
231
+ "license": "Apache-2.0",
232
+ "components": ["mcp"],
233
+ "operatingSystems": ["windows", "macos", "linux"],
234
+ "stars": 3941,
235
+ "source": {
236
+ "type": "github",
237
+ "url": "https://github.com/cloudflare/mcp-server-cloudflare",
238
+ "defaultBranch": "main",
239
+ "commit": "52c633e37684fadb94ae236f74909b9bbefc0db8",
240
+ "evidencePaths": ["README.md", "apps/ai-gateway/package.json"],
241
+ "verifiedAt": "2026-07-14T18:17:03Z"
242
+ }
243
+ },
244
+ {
245
+ "id": "supabase-mcp",
246
+ "displayName": "Supabase MCP",
247
+ "repository": "supabase/mcp",
248
+ "description": "Connect Supabase to your AI assistants.",
249
+ "category": "database",
250
+ "tier": "official",
251
+ "license": "Apache-2.0",
252
+ "components": ["mcp"],
253
+ "operatingSystems": ["windows", "macos", "linux"],
254
+ "stars": 2805,
255
+ "source": {
256
+ "type": "github",
257
+ "url": "https://github.com/supabase/mcp",
258
+ "defaultBranch": "main",
259
+ "commit": "9f0396a1b367dfa6a424f4686a21701c8f05b1c3",
260
+ "evidencePaths": [
261
+ "README.md",
262
+ "packages/mcp-server-supabase/src/index.ts"
263
+ ],
264
+ "verifiedAt": "2026-07-14T18:17:03Z"
265
+ }
266
+ },
267
+ {
268
+ "id": "sentry-mcp",
269
+ "displayName": "Sentry MCP",
270
+ "repository": "getsentry/sentry-mcp",
271
+ "description": "An MCP server for interacting with Sentry via LLMs.",
272
+ "category": "observability",
273
+ "tier": "official",
274
+ "license": "NOASSERTION",
275
+ "components": ["skill", "mcp"],
276
+ "operatingSystems": ["windows", "macos", "linux"],
277
+ "stars": 771,
278
+ "source": {
279
+ "type": "github",
280
+ "url": "https://github.com/getsentry/sentry-mcp",
281
+ "defaultBranch": "main",
282
+ "commit": "ce099fd251973774116749016847b78a6049ba0a",
283
+ "evidencePaths": ["README.md", ".agents/skills/mcp-audit/SKILL.md"],
284
+ "verifiedAt": "2026-07-14T18:17:03Z"
285
+ }
286
+ },
287
+ {
288
+ "id": "exa-mcp-server",
289
+ "displayName": "Exa MCP Server",
290
+ "repository": "exa-labs/exa-mcp-server",
291
+ "description": "Exa MCP for web search and web crawling!",
292
+ "category": "web-research",
293
+ "tier": "stable",
294
+ "license": "MIT",
295
+ "components": ["skill", "mcp", "plugin"],
296
+ "operatingSystems": ["windows", "macos", "linux"],
297
+ "stars": 4717,
298
+ "source": {
299
+ "type": "github",
300
+ "url": "https://github.com/exa-labs/exa-mcp-server",
301
+ "defaultBranch": "main",
302
+ "commit": "8823cbea80b6ec5999c6217cccd91660fe953b97",
303
+ "evidencePaths": [
304
+ "README.md",
305
+ "skills/search/SKILL.md",
306
+ ".claude-plugin/plugin.json"
307
+ ],
308
+ "verifiedAt": "2026-07-14T18:17:03Z"
309
+ }
310
+ },
311
+ {
312
+ "id": "firecrawl-mcp-server",
313
+ "displayName": "Firecrawl MCP Server",
314
+ "repository": "firecrawl/firecrawl-mcp-server",
315
+ "description": "Official Firecrawl MCP Server for web scraping and search in LLM clients.",
316
+ "category": "web-research",
317
+ "tier": "stable",
318
+ "license": "MIT",
319
+ "components": ["mcp"],
320
+ "operatingSystems": ["windows", "macos", "linux"],
321
+ "stars": 6953,
322
+ "source": {
323
+ "type": "github",
324
+ "url": "https://github.com/firecrawl/firecrawl-mcp-server",
325
+ "defaultBranch": "main",
326
+ "commit": "3eb1115b1f2883ff2fb74e61b5c4acf5a9ac0fb0",
327
+ "evidencePaths": ["README.md", "src/index.ts", "package.json"],
328
+ "verifiedAt": "2026-07-14T18:17:03Z"
329
+ }
330
+ },
331
+ {
332
+ "id": "azure-devops-mcp",
333
+ "displayName": "Azure DevOps MCP",
334
+ "repository": "microsoft/azure-devops-mcp",
335
+ "description": "The MCP server for Azure DevOps, bringing the power of Azure DevOps directly to your agents.",
336
+ "category": "devops",
337
+ "tier": "official",
338
+ "license": "MIT",
339
+ "components": ["mcp"],
340
+ "operatingSystems": ["windows", "macos", "linux"],
341
+ "stars": 1887,
342
+ "source": {
343
+ "type": "github",
344
+ "url": "https://github.com/microsoft/azure-devops-mcp",
345
+ "defaultBranch": "main",
346
+ "commit": "0a08dc649c951208eda942154c66187dec9985bd",
347
+ "evidencePaths": ["README.md", "mcp.json", "src/index.ts"],
348
+ "verifiedAt": "2026-07-14T18:17:03Z"
349
+ }
350
+ },
351
+ {
352
+ "id": "docker-mcp-gateway",
353
+ "displayName": "Docker MCP Gateway",
354
+ "repository": "docker/mcp-gateway",
355
+ "description": "docker mcp CLI plugin / MCP Gateway.",
356
+ "category": "containers",
357
+ "tier": "official",
358
+ "license": "MIT",
359
+ "components": ["skill", "mcp"],
360
+ "operatingSystems": ["windows", "macos", "linux"],
361
+ "stars": 1484,
362
+ "source": {
363
+ "type": "github",
364
+ "url": "https://github.com/docker/mcp-gateway",
365
+ "defaultBranch": "main",
366
+ "commit": "6ce7ff38e75e1c62ccefd9882145c4a2ab3134ed",
367
+ "evidencePaths": [
368
+ "README.md",
369
+ "cmd/docker-mcp/main.go",
370
+ ".claude/skills/otel-instrument/SKILL.md"
371
+ ],
372
+ "verifiedAt": "2026-07-14T18:17:03Z"
373
+ }
374
+ },
375
+ {
376
+ "id": "huggingface-mcp-server",
377
+ "displayName": "Hugging Face MCP Server",
378
+ "repository": "huggingface/hf-mcp-server",
379
+ "description": "Hugging Face MCP Server.",
380
+ "category": "machine-learning",
381
+ "tier": "official",
382
+ "license": "MIT",
383
+ "components": ["mcp"],
384
+ "operatingSystems": ["windows", "macos", "linux"],
385
+ "stars": 261,
386
+ "source": {
387
+ "type": "github",
388
+ "url": "https://github.com/huggingface/hf-mcp-server",
389
+ "defaultBranch": "main",
390
+ "commit": "2ec6f0723591214ac647ceb0a31c34221b9a317e",
391
+ "evidencePaths": [
392
+ "README.md",
393
+ "packages/mcp/src/index.ts",
394
+ "packages/mcp/package.json"
395
+ ],
396
+ "verifiedAt": "2026-07-14T18:17:03Z"
397
+ }
398
+ },
399
+ {
400
+ "id": "awesome-copilot",
401
+ "displayName": "Awesome Copilot",
402
+ "repository": "github/awesome-copilot",
403
+ "description": "Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.",
404
+ "category": "agent-skills",
405
+ "tier": "stable",
406
+ "license": "MIT",
407
+ "components": ["skill", "agent", "mcp"],
408
+ "operatingSystems": ["windows", "macos", "linux"],
409
+ "stars": 36595,
410
+ "source": {
411
+ "type": "github",
412
+ "url": "https://github.com/github/awesome-copilot",
413
+ "defaultBranch": "main",
414
+ "commit": "2c2461a7fa383f664bb75546f03a2c6087f3819d",
415
+ "evidencePaths": [
416
+ ".github/skills/agentic-workflows/SKILL.md",
417
+ "agents/CSharpExpert.agent.md",
418
+ ".vscode/mcp.json"
419
+ ],
420
+ "verifiedAt": "2026-07-15T08:30:00Z"
421
+ }
422
+ },
423
+ {
424
+ "id": "openai-codex-skills",
425
+ "displayName": "OpenAI Codex Skills",
426
+ "repository": "openai/codex",
427
+ "description": "Lightweight coding agent that runs in your terminal.",
428
+ "category": "agent-skills",
429
+ "tier": "official",
430
+ "license": "Apache-2.0",
431
+ "components": ["skill", "agent"],
432
+ "operatingSystems": ["windows", "macos", "linux"],
433
+ "stars": 98249,
434
+ "source": {
435
+ "type": "github",
436
+ "url": "https://github.com/openai/codex",
437
+ "defaultBranch": "main",
438
+ "commit": "2e1607ee2fa8099a233df7437adee5f16a741905",
439
+ "evidencePaths": [
440
+ ".codex/skills/code-review/SKILL.md",
441
+ ".codex/skills/babysit-pr/agents/openai.yaml"
442
+ ],
443
+ "verifiedAt": "2026-07-15T08:30:00Z"
444
+ }
445
+ },
446
+ {
447
+ "id": "ponytail",
448
+ "displayName": "Ponytail",
449
+ "repository": "DietrichGebert/ponytail",
450
+ "description": "A portable coding-agent skill and plugin for simplifying implementations and reducing unnecessary code.",
451
+ "category": "code-simplification",
452
+ "tier": "trending",
453
+ "license": "MIT",
454
+ "components": ["skill", "plugin"],
455
+ "operatingSystems": ["windows", "macos", "linux"],
456
+ "stars": 84287,
457
+ "pushedAt": "2026-07-15T21:32:15Z",
458
+ "source": {
459
+ "type": "github",
460
+ "url": "https://github.com/DietrichGebert/ponytail",
461
+ "defaultBranch": "main",
462
+ "commit": "16f29800fd2681bdf24f3eb4ccffe38be3baec6b",
463
+ "evidencePaths": [
464
+ "skills/ponytail/SKILL.md",
465
+ ".codex-plugin/plugin.json"
466
+ ],
467
+ "verifiedAt": "2026-07-16T08:44:36Z"
468
+ }
469
+ },
470
+ {
471
+ "id": "addyosmani-agent-skills",
472
+ "displayName": "Addy Osmani Agent Skills",
473
+ "repository": "addyosmani/agent-skills",
474
+ "description": "Production-grade engineering skills covering planning, testing, debugging, review, security, performance, and shipping.",
475
+ "category": "software-engineering",
476
+ "tier": "stable",
477
+ "license": "MIT",
478
+ "components": ["skill", "plugin"],
479
+ "operatingSystems": ["windows", "macos", "linux"],
480
+ "stars": 78646,
481
+ "pushedAt": "2026-07-16T07:22:11Z",
482
+ "source": {
483
+ "type": "github",
484
+ "url": "https://github.com/addyosmani/agent-skills",
485
+ "defaultBranch": "main",
486
+ "commit": "c1974de476a39cb002a3b8e51e6a7e8e57b808c6",
487
+ "evidencePaths": [
488
+ "skills/code-review-and-quality/SKILL.md",
489
+ "skills/test-driven-development/SKILL.md",
490
+ ".codex-plugin/plugin.json"
491
+ ],
492
+ "verifiedAt": "2026-07-16T08:44:36Z"
493
+ }
494
+ },
495
+ {
496
+ "id": "scientific-agent-skills",
497
+ "displayName": "Scientific Agent Skills",
498
+ "repository": "K-Dense-AI/scientific-agent-skills",
499
+ "description": "A broad collection of scientific research skills spanning data analysis, biology, chemistry, medicine, and scholarly workflows.",
500
+ "category": "scientific-research",
501
+ "tier": "stable",
502
+ "license": "MIT",
503
+ "components": ["skill"],
504
+ "operatingSystems": ["windows", "macos", "linux"],
505
+ "stars": 30995,
506
+ "pushedAt": "2026-07-15T17:44:16Z",
507
+ "source": {
508
+ "type": "github",
509
+ "url": "https://github.com/K-Dense-AI/scientific-agent-skills",
510
+ "defaultBranch": "main",
511
+ "commit": "3f825caafe149b7853ec8c4d1dd7f4553ea6b2a5",
512
+ "evidencePaths": [
513
+ "skills/experimental-design/SKILL.md",
514
+ "skills/citation-management/SKILL.md"
515
+ ],
516
+ "verifiedAt": "2026-07-16T08:44:36Z"
517
+ }
518
+ },
519
+ {
520
+ "id": "planning-with-files",
521
+ "displayName": "Planning with Files",
522
+ "repository": "OthmanAdi/planning-with-files",
523
+ "description": "Persistent file-based planning skills for long-running coding-agent tasks across many agent clients.",
524
+ "category": "planning",
525
+ "tier": "stable",
526
+ "license": "MIT",
527
+ "components": ["skill", "plugin"],
528
+ "operatingSystems": ["windows", "macos", "linux"],
529
+ "stars": 25403,
530
+ "pushedAt": "2026-07-14T14:32:40Z",
531
+ "source": {
532
+ "type": "github",
533
+ "url": "https://github.com/OthmanAdi/planning-with-files",
534
+ "defaultBranch": "master",
535
+ "commit": "f90780c92f0506d21c5f6c4865ce95517a8b1964",
536
+ "evidencePaths": [
537
+ "skills/planning-with-files/SKILL.md",
538
+ ".claude-plugin/plugin.json"
539
+ ],
540
+ "verifiedAt": "2026-07-16T08:44:36Z"
541
+ }
542
+ },
543
+ {
544
+ "id": "pm-skills",
545
+ "displayName": "PM Skills",
546
+ "repository": "phuryn/pm-skills",
547
+ "description": "Product-management skills for discovery, strategy, execution, analytics, go-to-market, and growth.",
548
+ "category": "product-management",
549
+ "tier": "stable",
550
+ "license": "MIT",
551
+ "components": ["skill", "plugin"],
552
+ "operatingSystems": ["windows", "macos", "linux"],
553
+ "stars": 23791,
554
+ "pushedAt": "2026-07-03T11:34:49Z",
555
+ "source": {
556
+ "type": "github",
557
+ "url": "https://github.com/phuryn/pm-skills",
558
+ "defaultBranch": "main",
559
+ "commit": "18468a95b427e70e258b51389796367c6f684e7d",
560
+ "evidencePaths": [
561
+ "pm-execution/skills/create-prd/SKILL.md",
562
+ "pm-data-analytics/skills/ab-test-analysis/SKILL.md",
563
+ "pm-execution/.claude-plugin/plugin.json"
564
+ ],
565
+ "verifiedAt": "2026-07-16T08:44:36Z"
566
+ }
567
+ },
568
+ {
569
+ "id": "baoyu-skills",
570
+ "displayName": "Baoyu Skills",
571
+ "repository": "JimLiu/baoyu-skills",
572
+ "description": "Agent skills for diagrams, slide decks, illustrations, image generation, publishing, translation, and content conversion.",
573
+ "category": "content-creation",
574
+ "tier": "stable",
575
+ "license": "MIT",
576
+ "components": ["skill"],
577
+ "operatingSystems": ["windows", "macos", "linux"],
578
+ "stars": 23700,
579
+ "pushedAt": "2026-07-04T16:25:18Z",
580
+ "source": {
581
+ "type": "github",
582
+ "url": "https://github.com/JimLiu/baoyu-skills",
583
+ "defaultBranch": "main",
584
+ "commit": "6b7a2e417500561a5ecdd0b168332f4142584617",
585
+ "evidencePaths": [
586
+ "skills/baoyu-diagram/SKILL.md",
587
+ "skills/baoyu-slide-deck/SKILL.md"
588
+ ],
589
+ "verifiedAt": "2026-07-16T08:44:36Z"
590
+ }
591
+ },
592
+ {
593
+ "id": "trail-of-bits-skills",
594
+ "displayName": "Trail of Bits Skills",
595
+ "repository": "trailofbits/skills",
596
+ "description": "Security-research, vulnerability-detection, code-audit, and secure-development skills from Trail of Bits.",
597
+ "category": "security",
598
+ "tier": "stable",
599
+ "license": "CC-BY-SA-4.0",
600
+ "components": ["skill", "plugin"],
601
+ "operatingSystems": ["windows", "macos", "linux"],
602
+ "stars": 6141,
603
+ "pushedAt": "2026-07-15T16:33:40Z",
604
+ "source": {
605
+ "type": "github",
606
+ "url": "https://github.com/trailofbits/skills",
607
+ "defaultBranch": "main",
608
+ "commit": "cfe5d7b1619e47fb5b38b7e2561dad7e5f1e89af",
609
+ "evidencePaths": [
610
+ "plugins/differential-review/skills/differential-review/SKILL.md",
611
+ "plugins/differential-review/.claude-plugin/plugin.json"
612
+ ],
613
+ "verifiedAt": "2026-07-16T08:44:36Z"
614
+ }
615
+ },
616
+ {
617
+ "id": "antfu-skills",
618
+ "displayName": "Antfu Skills",
619
+ "repository": "antfu/skills",
620
+ "description": "Curated skills for Vue, Nuxt, Vite, Vitest, pnpm, Slidev, and related frontend tooling.",
621
+ "category": "frontend-development",
622
+ "tier": "stable",
623
+ "license": "MIT",
624
+ "components": ["skill"],
625
+ "operatingSystems": ["windows", "macos", "linux"],
626
+ "stars": 5603,
627
+ "pushedAt": "2026-06-23T00:14:36Z",
628
+ "source": {
629
+ "type": "github",
630
+ "url": "https://github.com/antfu/skills",
631
+ "defaultBranch": "main",
632
+ "commit": "a74f281a27dadc02397bc1a174b0f2c97531b6ae",
633
+ "evidencePaths": [
634
+ "skills/vue-best-practices/SKILL.md",
635
+ "skills/vitest/SKILL.md"
636
+ ],
637
+ "verifiedAt": "2026-07-16T08:44:36Z"
638
+ }
639
+ },
640
+ {
641
+ "id": "dotnet-skills",
642
+ "displayName": ".NET Skills",
643
+ "repository": "dotnet/skills",
644
+ "description": "Official skills, plugins, and custom agents for .NET, C#, ASP.NET Core, Blazor, diagnostics, and AI development.",
645
+ "category": "dotnet-development",
646
+ "tier": "official",
647
+ "license": "MIT",
648
+ "components": ["skill", "agent", "plugin"],
649
+ "operatingSystems": ["windows", "macos", "linux"],
650
+ "stars": 4632,
651
+ "pushedAt": "2026-07-15T23:43:32Z",
652
+ "source": {
653
+ "type": "github",
654
+ "url": "https://github.com/dotnet/skills",
655
+ "defaultBranch": "main",
656
+ "commit": "79a2ada302fe8feb884ab33e1bfc2bddae3ee7ce",
657
+ "evidencePaths": [
658
+ "plugins/dotnet-ai/skills/mcp-csharp-create/SKILL.md",
659
+ "plugins/dotnet-ai/.codex-plugin/plugin.json",
660
+ "plugins/dotnet-diag/agents/optimizing-dotnet-performance.agent.md"
661
+ ],
662
+ "verifiedAt": "2026-07-16T08:44:36Z"
663
+ }
664
+ },
665
+ {
666
+ "id": "microsoft-skills",
667
+ "displayName": "Microsoft Skills",
668
+ "repository": "microsoft/skills",
669
+ "description": "Official Microsoft SDK-grounding skills, plugins, custom agents, and agent instructions.",
670
+ "category": "cloud-development",
671
+ "tier": "official",
672
+ "license": "MIT",
673
+ "components": ["skill", "agent", "plugin"],
674
+ "operatingSystems": ["windows", "macos", "linux"],
675
+ "stars": 2752,
676
+ "pushedAt": "2026-07-15T23:29:24Z",
677
+ "source": {
678
+ "type": "github",
679
+ "url": "https://github.com/microsoft/skills",
680
+ "defaultBranch": "main",
681
+ "commit": "e19efc27887e5f1a6380b9135cdbdbf10648fba7",
682
+ "evidencePaths": [
683
+ ".github/plugins/azure-sdk-dotnet/skills/azure-ai-openai-dotnet/SKILL.md",
684
+ ".github/plugins/azure-sdk-dotnet/.claude-plugin/plugin.json",
685
+ ".github/agents/backend.agent.md"
686
+ ],
687
+ "verifiedAt": "2026-07-16T08:44:36Z"
688
+ }
689
+ },
690
+ {
691
+ "id": "web-quality-skills",
692
+ "displayName": "Web Quality Skills",
693
+ "repository": "addyosmani/web-quality-skills",
694
+ "description": "Web-quality auditing skills for accessibility, performance, Core Web Vitals, SEO, and engineering best practices.",
695
+ "category": "web-quality",
696
+ "tier": "stable",
697
+ "license": "MIT",
698
+ "components": ["skill", "plugin"],
699
+ "operatingSystems": ["windows", "macos", "linux"],
700
+ "stars": 2507,
701
+ "pushedAt": "2026-06-14T09:08:35Z",
702
+ "source": {
703
+ "type": "github",
704
+ "url": "https://github.com/addyosmani/web-quality-skills",
705
+ "defaultBranch": "main",
706
+ "commit": "95d6e255afe1596b557d7a8498517884438f5b3a",
707
+ "evidencePaths": [
708
+ "skills/core-web-vitals/SKILL.md",
709
+ "skills/accessibility/SKILL.md",
710
+ ".claude-plugin/plugin.json"
711
+ ],
712
+ "verifiedAt": "2026-07-16T08:44:36Z"
713
+ }
714
+ },
715
+ {
716
+ "id": "softaworks-agent-toolkit",
717
+ "displayName": "Softaworks Agent Toolkit",
718
+ "repository": "softaworks/agent-toolkit",
719
+ "description": "Practical skills for software delivery, architecture, documentation, diagrams, testing, and team communication.",
720
+ "category": "engineering-productivity",
721
+ "tier": "stable",
722
+ "license": "MIT",
723
+ "components": ["skill"],
724
+ "operatingSystems": ["windows", "macos", "linux"],
725
+ "stars": 2195,
726
+ "pushedAt": "2026-03-05T16:46:24Z",
727
+ "source": {
728
+ "type": "github",
729
+ "url": "https://github.com/softaworks/agent-toolkit",
730
+ "defaultBranch": "main",
731
+ "commit": "3027f20f3181758385a1bb8c022d4041dfb4de84",
732
+ "evidencePaths": [
733
+ "skills/c4-architecture/SKILL.md",
734
+ "skills/qa-test-planner/SKILL.md"
735
+ ],
736
+ "verifiedAt": "2026-07-16T08:44:36Z"
737
+ }
738
+ },
739
+ {
740
+ "id": "drawio-skill",
741
+ "displayName": "Draw.io Skill",
742
+ "repository": "Agents365-ai/drawio-skill",
743
+ "description": "An agent skill for creating and validating editable Draw.io diagrams across architecture, UML, BPMN, and network workflows.",
744
+ "category": "diagramming",
745
+ "tier": "stable",
746
+ "license": "MIT",
747
+ "components": ["skill"],
748
+ "operatingSystems": ["windows", "macos", "linux"],
749
+ "stars": 5848,
750
+ "pushedAt": "2026-07-14T11:41:30Z",
751
+ "source": {
752
+ "type": "github",
753
+ "url": "https://github.com/Agents365-ai/drawio-skill",
754
+ "defaultBranch": "main",
755
+ "commit": "9f52925770334e9bd2794e40a7fa64c234e9f545",
756
+ "evidencePaths": ["skills/drawio-skill/SKILL.md"],
757
+ "verifiedAt": "2026-07-16T08:44:36Z"
758
+ }
759
+ },
760
+ {
761
+ "id": "chrome-devtools-mcp",
762
+ "displayName": "Chrome DevTools MCP",
763
+ "repository": "ChromeDevTools/chrome-devtools-mcp",
764
+ "description": "Chrome DevTools automation, inspection, performance, accessibility, and debugging capabilities for coding agents.",
765
+ "category": "browser-debugging",
766
+ "tier": "official",
767
+ "license": "Apache-2.0",
768
+ "components": ["skill", "mcp", "plugin"],
769
+ "operatingSystems": ["windows", "macos", "linux"],
770
+ "stars": 47050,
771
+ "pushedAt": "2026-07-15T14:10:27Z",
772
+ "source": {
773
+ "type": "github",
774
+ "url": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
775
+ "defaultBranch": "main",
776
+ "commit": "9a7e04daa2cd031afe469d4503d6baf58b9b2cea",
777
+ "evidencePaths": [
778
+ "src/bin/chrome-devtools-mcp-main.ts",
779
+ "skills/chrome-devtools/SKILL.md",
780
+ ".claude-plugin/plugin.json"
781
+ ],
782
+ "verifiedAt": "2026-07-16T08:45:18Z"
783
+ }
784
+ },
785
+ {
786
+ "id": "serena",
787
+ "displayName": "Serena",
788
+ "repository": "oraios/serena",
789
+ "description": "A semantic code-retrieval and editing MCP toolkit with language-server support for coding agents.",
790
+ "category": "code-intelligence",
791
+ "tier": "stable",
792
+ "license": "MIT",
793
+ "components": ["mcp"],
794
+ "operatingSystems": ["windows", "macos", "linux"],
795
+ "stars": 26505,
796
+ "pushedAt": "2026-07-16T08:35:29Z",
797
+ "source": {
798
+ "type": "github",
799
+ "url": "https://github.com/oraios/serena",
800
+ "defaultBranch": "main",
801
+ "commit": "465c5eb627883ec310c5b7e643fe445af84589b3",
802
+ "evidencePaths": ["src/serena/mcp.py", "pyproject.toml"],
803
+ "verifiedAt": "2026-07-16T08:45:18Z"
804
+ }
805
+ },
806
+ {
807
+ "id": "model-context-protocol-servers",
808
+ "displayName": "Model Context Protocol Servers",
809
+ "repository": "modelcontextprotocol/servers",
810
+ "description": "Official reference MCP servers for filesystem, Git, memory, fetching, time, and protocol testing.",
811
+ "category": "mcp-reference",
812
+ "tier": "official",
813
+ "license": "NOASSERTION",
814
+ "components": ["mcp"],
815
+ "operatingSystems": ["windows", "macos", "linux"],
816
+ "stars": 88530,
817
+ "pushedAt": "2026-07-10T03:30:19Z",
818
+ "source": {
819
+ "type": "github",
820
+ "url": "https://github.com/modelcontextprotocol/servers",
821
+ "defaultBranch": "main",
822
+ "commit": "d31124c982401739917fd817c2a59db344529c16",
823
+ "evidencePaths": [
824
+ ".mcp.json",
825
+ "src/filesystem/package.json",
826
+ "src/fetch/src/mcp_server_fetch/server.py"
827
+ ],
828
+ "verifiedAt": "2026-07-16T08:45:18Z"
829
+ }
830
+ },
831
+ {
832
+ "id": "aws-mcp-servers",
833
+ "displayName": "AWS MCP Servers",
834
+ "repository": "awslabs/mcp",
835
+ "description": "Official AWS MCP servers for cloud architecture, operations, data, documentation, and service workflows.",
836
+ "category": "cloud-platform",
837
+ "tier": "official",
838
+ "license": "Apache-2.0",
839
+ "components": ["mcp"],
840
+ "operatingSystems": ["windows", "macos", "linux"],
841
+ "stars": 9451,
842
+ "pushedAt": "2026-07-16T05:55:03Z",
843
+ "source": {
844
+ "type": "github",
845
+ "url": "https://github.com/awslabs/mcp",
846
+ "defaultBranch": "main",
847
+ "commit": "778b5a5db8a6f5b92ddb355e59b398544dbf6630",
848
+ "evidencePaths": [
849
+ "src/aws-api-mcp-server/awslabs/aws_api_mcp_server/server.py",
850
+ "src/aws-api-mcp-server/pyproject.toml"
851
+ ],
852
+ "verifiedAt": "2026-07-16T08:45:18Z"
853
+ }
854
+ },
855
+ {
856
+ "id": "dbhub",
857
+ "displayName": "DBHub",
858
+ "repository": "bytebase/dbhub",
859
+ "description": "A token-efficient database MCP server for PostgreSQL, MySQL, SQL Server, MariaDB, and SQLite.",
860
+ "category": "database",
861
+ "tier": "stable",
862
+ "license": "MIT",
863
+ "components": ["skill", "mcp"],
864
+ "operatingSystems": ["windows", "macos", "linux"],
865
+ "stars": 3167,
866
+ "pushedAt": "2026-07-10T18:02:19Z",
867
+ "source": {
868
+ "type": "github",
869
+ "url": "https://github.com/bytebase/dbhub",
870
+ "defaultBranch": "main",
871
+ "commit": "ec8efede6b8b47dabceb822022954852fc420490",
872
+ "evidencePaths": [
873
+ "src/server.ts",
874
+ "package.json",
875
+ "skills/dbhub/SKILL.md"
876
+ ],
877
+ "verifiedAt": "2026-07-16T08:45:18Z"
878
+ }
879
+ },
880
+ {
881
+ "id": "fastapi-mcp",
882
+ "displayName": "FastAPI MCP",
883
+ "repository": "tadata-org/fastapi_mcp",
884
+ "description": "A library for exposing FastAPI endpoints as authenticated MCP tools.",
885
+ "category": "api-development",
886
+ "tier": "stable",
887
+ "license": "MIT",
888
+ "components": ["mcp"],
889
+ "operatingSystems": ["windows", "macos", "linux"],
890
+ "stars": 11945,
891
+ "pushedAt": "2025-11-24T14:51:54Z",
892
+ "source": {
893
+ "type": "github",
894
+ "url": "https://github.com/tadata-org/fastapi_mcp",
895
+ "defaultBranch": "main",
896
+ "commit": "e5cad13cabfc725bbcb047e526816d887d96da62",
897
+ "evidencePaths": ["fastapi_mcp/server.py", "pyproject.toml"],
898
+ "verifiedAt": "2026-07-16T08:45:18Z"
899
+ }
900
+ },
901
+ {
902
+ "id": "browser-mcp",
903
+ "displayName": "Browser MCP",
904
+ "repository": "BrowserMCP/mcp",
905
+ "description": "A browser-control MCP server that connects compatible AI applications to a local browser extension.",
906
+ "category": "browser-automation",
907
+ "tier": "stable",
908
+ "license": "Apache-2.0",
909
+ "components": ["mcp"],
910
+ "operatingSystems": ["windows", "macos", "linux"],
911
+ "stars": 6832,
912
+ "pushedAt": "2025-04-24T21:49:44Z",
913
+ "source": {
914
+ "type": "github",
915
+ "url": "https://github.com/BrowserMCP/mcp",
916
+ "defaultBranch": "main",
917
+ "commit": "9db12f2b4f61294f0bc11708986abc47db539d6c",
918
+ "evidencePaths": ["src/server.ts", "package.json"],
919
+ "verifiedAt": "2026-07-16T08:45:18Z"
920
+ }
921
+ },
922
+ {
923
+ "id": "antvis-chart-mcp",
924
+ "displayName": "AntV Chart MCP",
925
+ "repository": "antvis/mcp-server-chart",
926
+ "description": "An MCP server for generating and analyzing a broad range of data visualizations with AntV.",
927
+ "category": "data-visualization",
928
+ "tier": "official",
929
+ "license": "MIT",
930
+ "components": ["mcp"],
931
+ "operatingSystems": ["windows", "macos", "linux"],
932
+ "stars": 4241,
933
+ "pushedAt": "2026-05-06T07:58:59Z",
934
+ "source": {
935
+ "type": "github",
936
+ "url": "https://github.com/antvis/mcp-server-chart",
937
+ "defaultBranch": "main",
938
+ "commit": "33178096abfa58f245b456f5bacb18bc37f5cbaf",
939
+ "evidencePaths": ["src/server.ts", "package.json"],
940
+ "verifiedAt": "2026-07-16T08:45:18Z"
941
+ }
942
+ },
943
+ {
944
+ "id": "excel-mcp-server",
945
+ "displayName": "Excel MCP Server",
946
+ "repository": "haris-musa/excel-mcp-server",
947
+ "description": "An MCP server for reading, writing, formatting, and analyzing Excel workbooks.",
948
+ "category": "spreadsheets",
949
+ "tier": "stable",
950
+ "license": "MIT",
951
+ "components": ["mcp"],
952
+ "operatingSystems": ["windows", "macos", "linux"],
953
+ "stars": 4033,
954
+ "pushedAt": "2026-04-12T06:14:45Z",
955
+ "source": {
956
+ "type": "github",
957
+ "url": "https://github.com/haris-musa/excel-mcp-server",
958
+ "defaultBranch": "main",
959
+ "commit": "f51340ecd5778952405044b203d3a2d4c8a46833",
960
+ "evidencePaths": ["src/excel_mcp/server.py", "pyproject.toml"],
961
+ "verifiedAt": "2026-07-16T08:45:18Z"
962
+ }
963
+ },
964
+ {
965
+ "id": "arxiv-mcp-server",
966
+ "displayName": "arXiv MCP Server",
967
+ "repository": "blazickjp/arxiv-mcp-server",
968
+ "description": "An MCP server and skill for searching, downloading, and analyzing research papers from arXiv.",
969
+ "category": "academic-research",
970
+ "tier": "stable",
971
+ "license": "Apache-2.0",
972
+ "components": ["skill", "mcp", "plugin"],
973
+ "operatingSystems": ["windows", "macos", "linux"],
974
+ "stars": 2961,
975
+ "pushedAt": "2026-05-18T18:00:11Z",
976
+ "source": {
977
+ "type": "github",
978
+ "url": "https://github.com/blazickjp/arxiv-mcp-server",
979
+ "defaultBranch": "main",
980
+ "commit": "d58901760d7ede4adb162eaba1725209a933f100",
981
+ "evidencePaths": [
982
+ "src/arxiv_mcp_server/server.py",
983
+ "skills/arxiv-mcp-server/SKILL.md",
984
+ ".codex-plugin/plugin.json",
985
+ ".mcp.json"
986
+ ],
987
+ "verifiedAt": "2026-07-16T08:45:18Z"
988
+ }
989
+ },
990
+ {
991
+ "id": "google-workspace-mcp",
992
+ "displayName": "Google Workspace MCP",
993
+ "repository": "taylorwilsdon/google_workspace_mcp",
994
+ "description": "An MCP server and skill for Gmail, Calendar, Drive, Docs, Sheets, Slides, Chat, Forms, and Tasks.",
995
+ "category": "productivity",
996
+ "tier": "stable",
997
+ "license": "MIT",
998
+ "components": ["skill", "mcp", "plugin"],
999
+ "operatingSystems": ["windows", "macos", "linux"],
1000
+ "stars": 2856,
1001
+ "pushedAt": "2026-07-07T15:21:48Z",
1002
+ "source": {
1003
+ "type": "github",
1004
+ "url": "https://github.com/taylorwilsdon/google_workspace_mcp",
1005
+ "defaultBranch": "main",
1006
+ "commit": "3f19c7d4a2654238e5fed1b767174fac5615555b",
1007
+ "evidencePaths": [
1008
+ "core/server.py",
1009
+ "fastmcp.json",
1010
+ "skills/managing-google-workspace/SKILL.md",
1011
+ ".claude-plugin/plugin.json"
1012
+ ],
1013
+ "verifiedAt": "2026-07-16T08:45:18Z"
1014
+ }
1015
+ },
1016
+ {
1017
+ "id": "mongodb-mcp-server",
1018
+ "displayName": "MongoDB MCP Server",
1019
+ "repository": "mongodb-js/mongodb-mcp-server",
1020
+ "description": "MongoDB's official MCP server for MongoDB databases and Atlas clusters.",
1021
+ "category": "database",
1022
+ "tier": "official",
1023
+ "license": "Apache-2.0",
1024
+ "components": ["mcp"],
1025
+ "operatingSystems": ["windows", "macos", "linux"],
1026
+ "stars": 1081,
1027
+ "pushedAt": "2026-07-16T08:27:53Z",
1028
+ "source": {
1029
+ "type": "github",
1030
+ "url": "https://github.com/mongodb-js/mongodb-mcp-server",
1031
+ "defaultBranch": "main",
1032
+ "commit": "f45d7c777d88d77069da36b3133e68901dc0697a",
1033
+ "evidencePaths": ["src/server.ts", "package.json"],
1034
+ "verifiedAt": "2026-07-16T08:45:18Z"
1035
+ }
1036
+ },
1037
+ {
1038
+ "id": "redis-mcp-server",
1039
+ "displayName": "Redis MCP Server",
1040
+ "repository": "redis/mcp-redis",
1041
+ "description": "Redis's official MCP server for managing, querying, and searching Redis data.",
1042
+ "category": "database",
1043
+ "tier": "official",
1044
+ "license": "MIT",
1045
+ "components": ["mcp"],
1046
+ "operatingSystems": ["windows", "macos", "linux"],
1047
+ "stars": 547,
1048
+ "pushedAt": "2026-06-22T11:06:06Z",
1049
+ "source": {
1050
+ "type": "github",
1051
+ "url": "https://github.com/redis/mcp-redis",
1052
+ "defaultBranch": "main",
1053
+ "commit": "53df2bcb7754a393f53b6c880ab710b95fefa343",
1054
+ "evidencePaths": [
1055
+ "src/main.py",
1056
+ "src/common/server.py",
1057
+ "pyproject.toml"
1058
+ ],
1059
+ "verifiedAt": "2026-07-16T08:45:18Z"
1060
+ }
1061
+ },
1062
+ {
1063
+ "id": "stripe-ai",
1064
+ "displayName": "Stripe AI",
1065
+ "repository": "stripe/ai",
1066
+ "description": "Official Stripe skills, plugins, MCP configuration, tools, and guidance for AI-powered products.",
1067
+ "category": "payments",
1068
+ "tier": "official",
1069
+ "license": "MIT",
1070
+ "components": ["skill", "mcp", "plugin"],
1071
+ "operatingSystems": ["windows", "macos", "linux"],
1072
+ "stars": 1680,
1073
+ "pushedAt": "2026-07-16T00:45:28Z",
1074
+ "source": {
1075
+ "type": "github",
1076
+ "url": "https://github.com/stripe/ai",
1077
+ "defaultBranch": "main",
1078
+ "commit": "e238b951665cba5260d70aa80e5021def27a61d3",
1079
+ "evidencePaths": [
1080
+ "providers/claude/plugin/.mcp.json",
1081
+ "providers/claude/plugin/skills/stripe-best-practices/SKILL.md",
1082
+ "providers/claude/plugin/.claude-plugin/plugin.json"
1083
+ ],
1084
+ "verifiedAt": "2026-07-16T08:45:18Z"
1085
+ }
1086
+ },
1087
+ {
1088
+ "id": "mcp-toolbox-for-databases",
1089
+ "displayName": "MCP Toolbox for Databases",
1090
+ "repository": "googleapis/mcp-toolbox",
1091
+ "description": "Google's open-source MCP server for connecting agents to databases with configurable tools and data sources.",
1092
+ "category": "database",
1093
+ "tier": "official",
1094
+ "license": "Apache-2.0",
1095
+ "components": ["mcp"],
1096
+ "operatingSystems": ["windows", "macos", "linux"],
1097
+ "stars": 15963,
1098
+ "pushedAt": "2026-07-16T08:34:35Z",
1099
+ "source": {
1100
+ "type": "github",
1101
+ "url": "https://github.com/googleapis/mcp-toolbox",
1102
+ "defaultBranch": "main",
1103
+ "commit": "b574b071fc27f717e90b4362864b1086be0c8995",
1104
+ "evidencePaths": ["internal/server/server.go", "main.go", "go.mod"],
1105
+ "verifiedAt": "2026-07-16T08:45:18Z"
1106
+ }
1107
+ },
1108
+ {
1109
+ "id": "browserbase-mcp-server",
1110
+ "displayName": "Browserbase MCP Server",
1111
+ "repository": "browserbase/mcp-server-browserbase",
1112
+ "description": "An MCP server for browser automation through Browserbase and Stagehand.",
1113
+ "category": "browser-automation",
1114
+ "tier": "stable",
1115
+ "license": "Apache-2.0",
1116
+ "components": ["mcp"],
1117
+ "operatingSystems": ["windows", "macos", "linux"],
1118
+ "stars": 3407,
1119
+ "pushedAt": "2026-07-07T05:50:51Z",
1120
+ "source": {
1121
+ "type": "github",
1122
+ "url": "https://github.com/browserbase/mcp-server-browserbase",
1123
+ "defaultBranch": "main",
1124
+ "commit": "1e196b3d3c4dc70944e0d19038dd9eb3608b207a",
1125
+ "evidencePaths": ["src/server.ts", "package.json"],
1126
+ "verifiedAt": "2026-07-16T08:45:18Z"
1127
+ }
1128
+ },
1129
+ {
1130
+ "id": "bright-data-mcp",
1131
+ "displayName": "Bright Data MCP",
1132
+ "repository": "brightdata/brightdata-mcp",
1133
+ "description": "An MCP server for public-web search, browsing, extraction, and structured data access through Bright Data.",
1134
+ "category": "web-research",
1135
+ "tier": "stable",
1136
+ "license": "MIT",
1137
+ "components": ["mcp"],
1138
+ "operatingSystems": ["windows", "macos", "linux"],
1139
+ "stars": 2499,
1140
+ "pushedAt": "2026-06-21T08:55:29Z",
1141
+ "source": {
1142
+ "type": "github",
1143
+ "url": "https://github.com/brightdata/brightdata-mcp",
1144
+ "defaultBranch": "main",
1145
+ "commit": "adbfdd49b8805136662a264490118c2688da3e29",
1146
+ "evidencePaths": ["server.js", "package.json"],
1147
+ "verifiedAt": "2026-07-16T08:45:18Z"
1148
+ }
1149
+ }
1150
+ ]