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 +1 -1
- package/dist/templates/apps-sdk/README.md +1 -1
- package/dist/templates/apps-sdk/index.ts +1 -0
- package/dist/templates/apps-sdk/package.json +0 -1
- package/dist/templates/mcp-ui/README.md +1 -1
- package/dist/templates/mcp-ui/index.ts +1 -0
- package/dist/templates/mcp-ui/package.json +1 -1
- package/dist/templates/starter/README.md +1 -1
- package/dist/templates/starter/index.ts +1 -0
- package/dist/templates/starter/package.json +0 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Apps SDK MCP Server
|
|
2
2
|
|
|
3
|
-
[](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%
|
|
3
|
+
[](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
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# UIResource MCP Server
|
|
2
2
|
|
|
3
|
-
[](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%
|
|
3
|
+
[](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;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MCP Starter Server
|
|
2
2
|
|
|
3
|
-
[](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%
|
|
3
|
+
[](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
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-mcp-use-app",
|
|
3
|
-
"version": "0.8.1-canary.
|
|
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": "
|
|
36
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"chalk": "^5.6.2",
|