ui-ux-pro-mcp 1.0.0 → 1.0.1
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/CHANGELOG.md +7 -0
- package/README.md +66 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to UI/UX Pro MCP will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.1] - 2026-01-18
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Added npm version and downloads badges to README
|
|
12
|
+
- Improved installation documentation with NPX, global install, and source options
|
|
13
|
+
- Enhanced MCP configuration examples for VS Code, Cursor, and Claude Desktop
|
|
14
|
+
|
|
8
15
|
## [1.0.0] - 2026-01-17
|
|
9
16
|
|
|
10
17
|
### Added
|
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# 🎨 UI/UX Pro MCP Server
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/ui-ux-pro-mcp)
|
|
4
|
+
[](https://www.npmjs.com/package/ui-ux-pro-mcp)
|
|
4
5
|
[](https://opensource.org/licenses/MIT)
|
|
5
6
|
[](https://www.typescriptlang.org/)
|
|
6
7
|
[](https://modelcontextprotocol.io/)
|
|
@@ -24,14 +25,20 @@
|
|
|
24
25
|
|
|
25
26
|
## 🚀 Quick Start
|
|
26
27
|
|
|
27
|
-
### Option 1: NPX (
|
|
28
|
+
### Option 1: NPX (Recommended)
|
|
28
29
|
|
|
29
30
|
```bash
|
|
30
|
-
# Will be available after npm publish
|
|
31
31
|
npx ui-ux-pro-mcp
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
### Option 2:
|
|
34
|
+
### Option 2: Global Install
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npm install -g ui-ux-pro-mcp
|
|
38
|
+
ui-ux-pro-mcp
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Option 3: From Source
|
|
35
42
|
|
|
36
43
|
```bash
|
|
37
44
|
# Clone the repository
|
|
@@ -56,6 +63,34 @@ npm start
|
|
|
56
63
|
|
|
57
64
|
Add to your MCP settings (`settings.json` or `mcp.json`):
|
|
58
65
|
|
|
66
|
+
#### Option A: Using NPX (Recommended - No Installation Required)
|
|
67
|
+
|
|
68
|
+
```json
|
|
69
|
+
{
|
|
70
|
+
"mcpServers": {
|
|
71
|
+
"ui-ux-pro": {
|
|
72
|
+
"command": "npx",
|
|
73
|
+
"args": ["ui-ux-pro-mcp", "--stdio"]
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
#### Option B: Using Global Install
|
|
80
|
+
|
|
81
|
+
```json
|
|
82
|
+
{
|
|
83
|
+
"mcpServers": {
|
|
84
|
+
"ui-ux-pro": {
|
|
85
|
+
"command": "ui-ux-pro-mcp",
|
|
86
|
+
"args": ["--stdio"]
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
#### Option C: From Source
|
|
93
|
+
|
|
59
94
|
```json
|
|
60
95
|
{
|
|
61
96
|
"mcpServers": {
|
|
@@ -86,6 +121,34 @@ Add to your Claude Desktop configuration:
|
|
|
86
121
|
|
|
87
122
|
**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
88
123
|
|
|
124
|
+
#### Option A: Using NPX (Recommended - No Installation Required)
|
|
125
|
+
|
|
126
|
+
```json
|
|
127
|
+
{
|
|
128
|
+
"mcpServers": {
|
|
129
|
+
"ui-ux-pro": {
|
|
130
|
+
"command": "npx",
|
|
131
|
+
"args": ["ui-ux-pro-mcp", "--stdio"]
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
#### Option B: Using Global Install
|
|
138
|
+
|
|
139
|
+
```json
|
|
140
|
+
{
|
|
141
|
+
"mcpServers": {
|
|
142
|
+
"ui-ux-pro": {
|
|
143
|
+
"command": "ui-ux-pro-mcp",
|
|
144
|
+
"args": ["--stdio"]
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
#### Option C: From Source
|
|
151
|
+
|
|
89
152
|
```json
|
|
90
153
|
{
|
|
91
154
|
"mcpServers": {
|