create-mcp-use-app 0.8.1-canary.0 → 0.8.1-canary.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 CHANGED
@@ -400,7 +400,7 @@ server.prompt('code_review', {
400
400
  **Command not found:**
401
401
 
402
402
  ```bash
403
- # Make sure you have Node.js 18+ installed
403
+ # Make sure you have Node.js 20.19+ installed
404
404
  node --version
405
405
 
406
406
  # Try with npx
@@ -1,6 +1,6 @@
1
1
  # Apps SDK MCP Server
2
2
 
3
- [![Deploy to mcp-use](https://cdn.mcp-use.com/deploy.svg)](https://mcp-use.com/deploy/start?repository-url=https%3A%2F%2Fgithub.com%2Fmcp-use%2Fmcp-use%2Ftree%2Fmain%2Flibraries%2Ftypescript%2Fpackages%2Fcreate-mcp-use-app%2Fsrc%2Ftemplates%2Fapps-sdk&branch=main&project-name=apps-sdk-template&build-command=npm+install&start-command=npm+run+build+%26%26+npm+run+start&port=3000&runtime=node&base-image=node%3A18)
3
+ [![Deploy to mcp-use](https://cdn.mcp-use.com/deploy.svg)](https://mcp-use.com/deploy/start?repository-url=https%3A%2F%2Fgithub.com%2Fmcp-use%2Fmcp-use%2Ftree%2Fmain%2Flibraries%2Ftypescript%2Fpackages%2Fcreate-mcp-use-app%2Fsrc%2Ftemplates%2Fapps-sdk&branch=main&project-name=apps-sdk-template&build-command=npm+install&start-command=npm+run+build+%26%26+npm+run+start&port=3000&runtime=node&base-image=node%3A20)
4
4
 
5
5
  An MCP server template with OpenAI Apps SDK integration for ChatGPT-compatible widgets.
6
6
 
@@ -3,6 +3,7 @@ import { createMCPServer } from "mcp-use/server";
3
3
  const server = createMCPServer("test-app", {
4
4
  version: "1.0.0",
5
5
  description: "Test MCP server with automatic UI widget registration",
6
+ // favicon: "favicon.ico", // Uncomment and add your favicon to public/ folder
6
7
  });
7
8
 
8
9
  /**
@@ -36,7 +36,6 @@
36
36
  "react": "^19.2.0",
37
37
  "react-dom": "^19.2.0",
38
38
  "react-router": "^7.9.6",
39
- "react-router-dom": "^7.9.6",
40
39
  "tailwindcss": "^4.1.17",
41
40
  "zod": "^4.1.13"
42
41
  },
@@ -1,6 +1,6 @@
1
1
  # UIResource MCP Server
2
2
 
3
- [![Deploy to mcp-use](https://cdn.mcp-use.com/deploy.svg)](https://mcp-use.com/deploy/start?repository-url=https%3A%2F%2Fgithub.com%2Fmcp-use%2Fmcp-use%2Ftree%2Fmain%2Flibraries%2Ftypescript%2Fpackages%2Fcreate-mcp-use-app%2Fsrc%2Ftemplates%2Fmcp-ui&branch=main&project-name=mcp-ui-template&build-command=npm+install&start-command=npm+run+build+%26%26+npm+run+start&port=3000&runtime=node&base-image=node%3A18)
3
+ [![Deploy to mcp-use](https://cdn.mcp-use.com/deploy.svg)](https://mcp-use.com/deploy/start?repository-url=https%3A%2F%2Fgithub.com%2Fmcp-use%2Fmcp-use%2Ftree%2Fmain%2Flibraries%2Ftypescript%2Fpackages%2Fcreate-mcp-use-app%2Fsrc%2Ftemplates%2Fmcp-ui&branch=main&project-name=mcp-ui-template&build-command=npm+install&start-command=npm+run+build+%26%26+npm+run+start&port=3000&runtime=node&base-image=node%3A20)
4
4
 
5
5
  An MCP server with the new UIResource integration for simplified widget management and MCP-UI compatibility.
6
6
 
@@ -6,6 +6,7 @@ const server = createMCPServer("uiresource-mcp-server", {
6
6
  version: "1.0.0",
7
7
  description: "MCP server demonstrating all UIResource types",
8
8
  baseUrl: process.env.MCP_URL, // Full base URL (e.g., https://myserver.com)
9
+ // favicon: "favicon.ico", // Uncomment and add your favicon to public/ folder
9
10
  });
10
11
 
11
12
  const PORT = process.env.PORT ? parseInt(process.env.PORT, 10) : 3000;
@@ -30,7 +30,7 @@
30
30
  "node-mocks-http": "^1.17.2",
31
31
  "react": "^19.2.0",
32
32
  "react-dom": "^19.2.0",
33
- "react-router-dom": "^7.9.6",
33
+ "react-router": "^7.9.6",
34
34
  "tailwindcss": "^4.1.17",
35
35
  "zod": "^4.1.13"
36
36
  },
@@ -1,6 +1,6 @@
1
1
  # MCP Starter Server
2
2
 
3
- [![Deploy to mcp-use](https://cdn.mcp-use.com/deploy.svg)](https://mcp-use.com/deploy/start?repository-url=https%3A%2F%2Fgithub.com%2Fmcp-use%2Fmcp-use%2Ftree%2Fmain%2Flibraries%2Ftypescript%2Fpackages%2Fcreate-mcp-use-app%2Fsrc%2Ftemplates%2Fstarter&branch=main&project-name=starter-template&build-command=npm+install&start-command=npm+run+build+%26%26+npm+run+start&port=3000&runtime=node&base-image=node%3A18)
3
+ [![Deploy to mcp-use](https://cdn.mcp-use.com/deploy.svg)](https://mcp-use.com/deploy/start?repository-url=https%3A%2F%2Fgithub.com%2Fmcp-use%2Fmcp-use%2Ftree%2Fmain%2Flibraries%2Ftypescript%2Fpackages%2Fcreate-mcp-use-app%2Fsrc%2Ftemplates%2Fstarter&branch=main&project-name=starter-template&build-command=npm+install&start-command=npm+run+build+%26%26+npm+run+start&port=3000&runtime=node&base-image=node%3A20)
4
4
 
5
5
  A comprehensive MCP server template with examples of tools, resources, prompts, and all UIResource types.
6
6
 
@@ -5,6 +5,7 @@ const server = createMCPServer("my-mcp-server", {
5
5
  version: "1.0.0",
6
6
  description: "My first MCP server with all features",
7
7
  baseUrl: process.env.MCP_URL || "http://localhost:3000", // Full base URL (e.g., https://myserver.com)
8
+ // favicon: "favicon.ico", // Uncomment and add your favicon to public/ folder
8
9
  });
9
10
 
10
11
  /**
@@ -36,7 +36,6 @@
36
36
  "react": "^19.2.0",
37
37
  "react-dom": "^19.2.0",
38
38
  "react-router": "^7.9.6",
39
- "react-router-dom": "^7.9.6",
40
39
  "tailwindcss": "^4.1.17",
41
40
  "zod": "^4.1.13"
42
41
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mcp-use-app",
3
- "version": "0.8.1-canary.0",
3
+ "version": "0.8.1-canary.2",
4
4
  "type": "module",
5
5
  "description": "Create MCP-Use apps with one command",
6
6
  "author": "mcp-use, Inc.",
@@ -33,7 +33,7 @@
33
33
  "README.md"
34
34
  ],
35
35
  "engines": {
36
- "node": ">=18.0.0"
36
+ "node": "^20.19.0 || >=22.12.0"
37
37
  },
38
38
  "dependencies": {
39
39
  "chalk": "^5.6.2",