@vizejs/musea-mcp-server 0.59.0 → 0.61.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/README.md +6 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,8 +11,10 @@ MCP (Model Context Protocol) server for Musea design system integration.
|
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
|
+
Install `vp` once from the [Vite+ install guide](https://viteplus.dev/guide/install), then add the server to your project:
|
|
15
|
+
|
|
14
16
|
```bash
|
|
15
|
-
|
|
17
|
+
vp install -D @vizejs/musea-mcp-server
|
|
16
18
|
```
|
|
17
19
|
|
|
18
20
|
## Usage
|
|
@@ -25,8 +27,8 @@ Add to `claude_desktop_config.json`:
|
|
|
25
27
|
{
|
|
26
28
|
"mcpServers": {
|
|
27
29
|
"musea": {
|
|
28
|
-
"command": "
|
|
29
|
-
"args": ["--project", "/path/to/project"]
|
|
30
|
+
"command": "vp",
|
|
31
|
+
"args": ["dlx", "@vizejs/musea-mcp-server", "--project", "/path/to/project"]
|
|
30
32
|
}
|
|
31
33
|
}
|
|
32
34
|
}
|
|
@@ -35,7 +37,7 @@ Add to `claude_desktop_config.json`:
|
|
|
35
37
|
### Standalone
|
|
36
38
|
|
|
37
39
|
```bash
|
|
38
|
-
musea-mcp-server --project ./my-vue-app
|
|
40
|
+
vp dlx @vizejs/musea-mcp-server --project ./my-vue-app
|
|
39
41
|
```
|
|
40
42
|
|
|
41
43
|
## MCP Tools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizejs/musea-mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.61.0",
|
|
4
4
|
"description": "MCP server for building Vue.js design systems - component analysis, documentation, variant generation, and design tokens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@modelcontextprotocol/sdk": "0.5.0",
|
|
41
|
-
"@vizejs/native": "0.
|
|
41
|
+
"@vizejs/native": "0.61.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@tsdown/css": "0.21.9",
|