mozaic-mcp-server 2.3.0 → 2.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 (2) hide show
  1. package/bin/install.js +4 -0
  2. package/package.json +1 -1
package/bin/install.js CHANGED
@@ -23,6 +23,8 @@ const MCP_CONFIG_FILE = join(MCP_CONFIG_DIR, 'claude_desktop_config.json');
23
23
  const SKILLS = [
24
24
  'mozaic-vue-builder',
25
25
  'mozaic-react-builder',
26
+ 'mozaic-webcomponents-builder',
27
+ 'mozaic-freemarker-builder',
26
28
  'mozaic-design-tokens',
27
29
  'mozaic-css-utilities',
28
30
  'mozaic-icons'
@@ -456,6 +458,8 @@ async function runInteractive() {
456
458
  const descriptions = {
457
459
  'mozaic-vue-builder': 'Vue 3 component generator',
458
460
  'mozaic-react-builder': 'React/TSX component generator',
461
+ 'mozaic-webcomponents-builder': 'Web Components generator',
462
+ 'mozaic-freemarker-builder': 'Freemarker macro generator',
459
463
  'mozaic-design-tokens': 'Design tokens & styling',
460
464
  'mozaic-css-utilities': 'CSS utilities & layouts',
461
465
  'mozaic-icons': 'Icon search & integration'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mozaic-mcp-server",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "description": "Self-contained Claude Code skills for Mozaic Design System by ADEO",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",