@nuwax-ai/openui-mcp 0.1.1 → 0.1.2
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 +5 -1
- package/dist/server/http.js +0 -0
- package/dist/server/stdio.js +0 -0
- package/package.json +18 -19
package/README.md
CHANGED
|
@@ -91,7 +91,7 @@ one process and one sidecar port:
|
|
|
91
91
|
"mcpServers": {
|
|
92
92
|
"nuwax-openui": {
|
|
93
93
|
"command": "npx",
|
|
94
|
-
"args": ["-y", "@nuwax-ai/openui-mcp@0.1.
|
|
94
|
+
"args": ["-y", "@nuwax-ai/openui-mcp@0.1.2"],
|
|
95
95
|
"env": {
|
|
96
96
|
"NUWAX_OPENUI_HOST": "127.0.0.1",
|
|
97
97
|
"NUWAX_OPENUI_PORT": "8787",
|
|
@@ -105,6 +105,10 @@ one process and one sidecar port:
|
|
|
105
105
|
}
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
+
> **Note:** The package exposes `openui-mcp` as the default bin (matching the
|
|
109
|
+
> unscoped package name) so `npx @nuwax-ai/openui-mcp` resolves to the stdio
|
|
110
|
+
> entry. Aliases: `nuwax-openui-mcp` (stdio), `nuwax-openui-mcp-http` (HTTP).
|
|
111
|
+
|
|
108
112
|
## Run over Streamable HTTP
|
|
109
113
|
|
|
110
114
|
```bash
|
package/dist/server/http.js
CHANGED
|
File without changes
|
package/dist/server/stdio.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuwax-ai/openui-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "OpenUI over MCP for Nuwax, with inline and sidecar rendering contracts.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"bin": {
|
|
28
|
+
"openui-mcp": "dist/server/stdio.js",
|
|
28
29
|
"nuwax-openui-mcp": "dist/server/stdio.js",
|
|
29
30
|
"nuwax-openui-mcp-http": "dist/server/http.js"
|
|
30
31
|
},
|
|
@@ -33,22 +34,6 @@
|
|
|
33
34
|
"README.md",
|
|
34
35
|
"LICENSE"
|
|
35
36
|
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "pnpm build:server && pnpm build:web",
|
|
38
|
-
"build:server": "tsc -p tsconfig.server.json",
|
|
39
|
-
"build:web": "vite build",
|
|
40
|
-
"dev:http": "tsx watch src/http.ts",
|
|
41
|
-
"dev:stdio": "tsx src/stdio.ts",
|
|
42
|
-
"format": "prettier --write .",
|
|
43
|
-
"format:check": "prettier --check .",
|
|
44
|
-
"lint": "eslint .",
|
|
45
|
-
"start": "node dist/server/http.js",
|
|
46
|
-
"test": "vitest run",
|
|
47
|
-
"test:watch": "vitest",
|
|
48
|
-
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc -p tsconfig.web.json --noEmit",
|
|
49
|
-
"verify": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
|
|
50
|
-
"prepublishOnly": "pnpm verify"
|
|
51
|
-
},
|
|
52
37
|
"publishConfig": {
|
|
53
38
|
"access": "public",
|
|
54
39
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -85,5 +70,19 @@
|
|
|
85
70
|
"engines": {
|
|
86
71
|
"node": ">=20"
|
|
87
72
|
},
|
|
88
|
-
"
|
|
89
|
-
|
|
73
|
+
"scripts": {
|
|
74
|
+
"build": "pnpm build:server && pnpm build:web",
|
|
75
|
+
"build:server": "tsc -p tsconfig.server.json",
|
|
76
|
+
"build:web": "vite build",
|
|
77
|
+
"dev:http": "tsx watch src/http.ts",
|
|
78
|
+
"dev:stdio": "tsx src/stdio.ts",
|
|
79
|
+
"format": "prettier --write .",
|
|
80
|
+
"format:check": "prettier --check .",
|
|
81
|
+
"lint": "eslint .",
|
|
82
|
+
"start": "node dist/server/http.js",
|
|
83
|
+
"test": "vitest run",
|
|
84
|
+
"test:watch": "vitest",
|
|
85
|
+
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc -p tsconfig.web.json --noEmit",
|
|
86
|
+
"verify": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build"
|
|
87
|
+
}
|
|
88
|
+
}
|