create-mcp-use-app 0.7.0 → 0.7.1-canary.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/README.md CHANGED
@@ -117,8 +117,8 @@ npx create-mcp-use-app my-project --npm
117
117
  npx create-mcp-use-app my-project --yarn
118
118
  npx create-mcp-use-app my-project --pnpm
119
119
 
120
- # Skip dependency installation
121
- npx create-mcp-use-app my-project --no-install
120
+ # Install deps automatically
121
+ npx create-mcp-use-app my-project --install
122
122
  ```
123
123
 
124
124
  ---
package/dist/index.js CHANGED
@@ -75,12 +75,12 @@ function getInstallCommand(packageManager) {
75
75
  function getInstallArgs(packageManager) {
76
76
  switch (packageManager) {
77
77
  case "yarn":
78
- return ["install", "--prefer-offline", "--no-audit"];
78
+ return ["install"];
79
79
  case "pnpm":
80
- return ["install", "--prefer-offline", "--no-audit"];
80
+ return ["install"];
81
81
  case "npm":
82
82
  default:
83
- return ["install", "--prefer-offline", "--no-audit", "--no-fund"];
83
+ return ["install"];
84
84
  }
85
85
  }
86
86
  function isInGitRepository() {
@@ -32,9 +32,11 @@
32
32
  "cors": "^2.8.5",
33
33
  "express": "^4.18.0",
34
34
  "mcp-use": "workspace:*",
35
+ "node-mocks-http": "^1.16.2",
35
36
  "react": "^19.2.0",
36
37
  "react-dom": "^19.2.0",
37
38
  "react-router": "^7.9.6",
39
+ "react-router-dom": "^7.9.5",
38
40
  "tailwindcss": "^4.0.0",
39
41
  "zod": "^4.1.12"
40
42
  },
@@ -47,5 +49,8 @@
47
49
  "tsx": "^4.20.6",
48
50
  "typescript": "^5.0.0",
49
51
  "vite": "^7.2.4"
52
+ },
53
+ "overrides": {
54
+ "sugarss": "^5.0.1"
50
55
  }
51
56
  }
@@ -8,7 +8,7 @@ const server = createMCPServer("uiresource-mcp-server", {
8
8
  baseUrl: process.env.MCP_URL, // Full base URL (e.g., https://myserver.com)
9
9
  });
10
10
 
11
- const PORT = process.env.PORT || 3000;
11
+ const PORT = process.env.PORT ? parseInt(process.env.PORT, 10) : 3000;
12
12
 
13
13
  /**
14
14
  * ════════════════════════════════════════════════════════════════════
@@ -27,8 +27,10 @@
27
27
  "cors": "^2.8.5",
28
28
  "express": "^4.18.0",
29
29
  "mcp-use": "workspace:*",
30
+ "node-mocks-http": "^1.16.2",
30
31
  "react": "^19.2.0",
31
32
  "react-dom": "^19.2.0",
33
+ "react-router-dom": "^7.9.5",
32
34
  "tailwindcss": "^4.0.0",
33
35
  "zod": "^4.1.12"
34
36
  },
@@ -41,5 +43,8 @@
41
43
  "tsx": "^4.20.6",
42
44
  "typescript": "^5.0.0",
43
45
  "vite": "^7.2.4"
46
+ },
47
+ "overrides": {
48
+ "sugarss": "^5.0.1"
44
49
  }
45
50
  }
@@ -30,8 +30,10 @@
30
30
  "cors": "^2.8.5",
31
31
  "express": "^4.18.0",
32
32
  "mcp-use": "workspace:*",
33
+ "node-mocks-http": "^1.16.2",
33
34
  "react": "^19.2.0",
34
35
  "react-dom": "^19.2.0",
36
+ "react-router-dom": "^7.9.5",
35
37
  "tailwindcss": "^4.0.0",
36
38
  "zod": "^4.1.12"
37
39
  },
@@ -44,5 +46,8 @@
44
46
  "tsx": "^4.20.6",
45
47
  "typescript": "^5.0.0",
46
48
  "vite": "^7.2.4"
49
+ },
50
+ "overrides": {
51
+ "sugarss": "^5.0.1"
47
52
  }
48
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mcp-use-app",
3
- "version": "0.7.0",
3
+ "version": "0.7.1-canary.1",
4
4
  "type": "module",
5
5
  "description": "Create MCP-Use apps with one command",
6
6
  "author": "mcp-use, Inc.",