nyxui-mcp 1.0.0 → 1.0.3
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/mcp-server.mjs +5 -10
- package/package.json +3 -3
- package/readme.md +7 -0
package/mcp-server.mjs
CHANGED
|
@@ -674,13 +674,8 @@ export async function startServer() {
|
|
|
674
674
|
return server;
|
|
675
675
|
}
|
|
676
676
|
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
console.error("[nyxui-mcp] Failed to start server");
|
|
683
|
-
console.error(error);
|
|
684
|
-
process.exit(1);
|
|
685
|
-
});
|
|
686
|
-
}
|
|
677
|
+
startServer().catch((error) => {
|
|
678
|
+
console.error("[nyxui-mcp] Failed to start server");
|
|
679
|
+
console.error(error);
|
|
680
|
+
process.exit(1);
|
|
681
|
+
});
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nyxui-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Official MCP server for Nyx UI - Modern React components built with Tailwind CSS and Framer Motion",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"nyxui-mcp": "
|
|
7
|
+
"nyxui-mcp": "mcp-server.mjs"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"start": "node mcp-server.mjs"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"homepage": "https://nyxui.com",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "https://github.com/MihirJaiswal/nyxui-mcp"
|
|
32
|
+
"url": "git+https://github.com/MihirJaiswal/nyxui-mcp.git"
|
|
33
33
|
},
|
|
34
34
|
"bugs": {
|
|
35
35
|
"url": "https://github.com/MihirJaiswal/nyxui-mcp/issues"
|
package/readme.md
CHANGED
|
@@ -17,6 +17,13 @@ Add to your MCP client config:
|
|
|
17
17
|
}
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
### Config file location
|
|
21
|
+
|
|
22
|
+
- **Mac:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
23
|
+
- **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
24
|
+
|
|
25
|
+
After editing the config, restart Claude Desktop.
|
|
26
|
+
|
|
20
27
|
### Supported Clients
|
|
21
28
|
|
|
22
29
|
- Claude Desktop
|