mozaic-mcp-server 2.0.0 → 2.0.4
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/INSTALLATION.md +9 -9
- package/README.md +10 -10
- package/bin/install.js +3 -3
- package/package.json +4 -4
package/INSTALLATION.md
CHANGED
|
@@ -5,7 +5,7 @@ This package provides **two installation modes**: Skills (recommended) and MCP S
|
|
|
5
5
|
## Interactive Mode (Easiest!)
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx mozaic-install
|
|
8
|
+
npx adeo-mozaic-install-tools
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
This launches an **interactive checkbox interface** where you can:
|
|
@@ -24,36 +24,36 @@ For quick operations without prompts:
|
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
26
|
# Install everything (skills + MCP server)
|
|
27
|
-
npx mozaic-install all
|
|
27
|
+
npx adeo-mozaic-install-tools all
|
|
28
28
|
|
|
29
29
|
# Install only Claude Code skills
|
|
30
|
-
npx mozaic-install skills
|
|
30
|
+
npx adeo-mozaic-install-tools skills
|
|
31
31
|
|
|
32
32
|
# Install only MCP server for Claude Desktop
|
|
33
|
-
npx mozaic-install mcp
|
|
33
|
+
npx adeo-mozaic-install-tools mcp
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### Status & Help
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
# Check what's installed
|
|
40
|
-
npx mozaic-install list
|
|
40
|
+
npx adeo-mozaic-install-tools list
|
|
41
41
|
|
|
42
42
|
# Show all available commands
|
|
43
|
-
npx mozaic-install --help
|
|
43
|
+
npx adeo-mozaic-install-tools --help
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
### Remove Commands
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
49
|
# Remove everything
|
|
50
|
-
npx mozaic-install remove all
|
|
50
|
+
npx adeo-mozaic-install-tools remove all
|
|
51
51
|
|
|
52
52
|
# Remove only skills
|
|
53
|
-
npx mozaic-install remove skills
|
|
53
|
+
npx adeo-mozaic-install-tools remove skills
|
|
54
54
|
|
|
55
55
|
# Remove only MCP server
|
|
56
|
-
npx mozaic-install remove mcp
|
|
56
|
+
npx adeo-mozaic-install-tools remove mcp
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
## What Gets Installed
|
package/README.md
CHANGED
|
@@ -30,44 +30,44 @@ This package includes **5 self-contained Claude Code skills** with interactive,
|
|
|
30
30
|
|
|
31
31
|
**Interactive mode (recommended):**
|
|
32
32
|
```bash
|
|
33
|
-
npx mozaic-install
|
|
33
|
+
npx adeo-mozaic-install-tools
|
|
34
34
|
# or
|
|
35
|
-
npx mozaic-install select
|
|
35
|
+
npx adeo-mozaic-install-tools select
|
|
36
36
|
```
|
|
37
37
|
Select individual skills and MCP server with checkboxes!
|
|
38
38
|
|
|
39
39
|
**Quick install commands:**
|
|
40
40
|
```bash
|
|
41
41
|
# Install everything (skills + MCP server)
|
|
42
|
-
npx mozaic-install all
|
|
42
|
+
npx adeo-mozaic-install-tools all
|
|
43
43
|
|
|
44
44
|
# Or install just skills for Claude Code
|
|
45
|
-
npx mozaic-install skills
|
|
45
|
+
npx adeo-mozaic-install-tools skills
|
|
46
46
|
|
|
47
47
|
# Or install just MCP server for Claude Desktop
|
|
48
|
-
npx mozaic-install mcp
|
|
48
|
+
npx adeo-mozaic-install-tools mcp
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
**Check what's installed:**
|
|
52
52
|
```bash
|
|
53
|
-
npx mozaic-install list
|
|
53
|
+
npx adeo-mozaic-install-tools list
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
**Uninstall:**
|
|
57
57
|
```bash
|
|
58
58
|
# Remove everything
|
|
59
|
-
npx mozaic-install remove all
|
|
59
|
+
npx adeo-mozaic-install-tools remove all
|
|
60
60
|
|
|
61
61
|
# Remove just skills
|
|
62
|
-
npx mozaic-install remove skills
|
|
62
|
+
npx adeo-mozaic-install-tools remove skills
|
|
63
63
|
|
|
64
64
|
# Remove just MCP server
|
|
65
|
-
npx mozaic-install remove mcp
|
|
65
|
+
npx adeo-mozaic-install-tools remove mcp
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
**Help:**
|
|
69
69
|
```bash
|
|
70
|
-
npx mozaic-install --help
|
|
70
|
+
npx adeo-mozaic-install-tools --help
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
**Learn more:** [SKILLS.md](./SKILLS.md) | [INSTALLATION.md](./INSTALLATION.md)
|
package/bin/install.js
CHANGED
|
@@ -265,9 +265,9 @@ function printSuccess(installed, uninstalled) {
|
|
|
265
265
|
const program = new Command();
|
|
266
266
|
|
|
267
267
|
program
|
|
268
|
-
.name('mozaic-install')
|
|
268
|
+
.name('adeo-mozaic-install-tools')
|
|
269
269
|
.description('Mozaic Design System installer for Claude Code & Claude Desktop\n Run without arguments for interactive mode')
|
|
270
|
-
.version('
|
|
270
|
+
.version('2.0.1')
|
|
271
271
|
.hook('preAction', () => {
|
|
272
272
|
printLogo();
|
|
273
273
|
});
|
|
@@ -311,7 +311,7 @@ program
|
|
|
311
311
|
log('│ │', 'cyan');
|
|
312
312
|
log('│ Nothing installed │', 'yellow');
|
|
313
313
|
log('│ │', 'cyan');
|
|
314
|
-
log('│ Run: mozaic-install all
|
|
314
|
+
log('│ Run: adeo-mozaic-install-tools all │', 'dim');
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
log('│ │', 'cyan');
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mozaic-mcp-server",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Self-contained Claude Code skills for Mozaic Design System by ADEO",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
+
"adeo-mozaic-install-tools": "bin/install.js",
|
|
8
9
|
"mozaic-mcp-server": "dist/index.js",
|
|
9
|
-
"mozaic-install": "bin/install.js",
|
|
10
10
|
"mozaic-skills": "bin/install-skills.js"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
67
67
|
"@types/prompts": "^2.4.9",
|
|
68
|
-
"better-sqlite3": "
|
|
68
|
+
"better-sqlite3": "12.8.0",
|
|
69
69
|
"commander": "^14.0.3",
|
|
70
|
-
"glob": "^
|
|
70
|
+
"glob": "^13.0.6",
|
|
71
71
|
"prompts": "^2.4.2",
|
|
72
72
|
"zod": "^3.23.0"
|
|
73
73
|
},
|