create-mcp-use-app 0.8.1-canary.1 → 0.8.1-canary.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.
@@ -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
  /**
@@ -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;
@@ -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.1",
3
+ "version": "0.8.1-canary.3",
4
4
  "type": "module",
5
5
  "description": "Create MCP-Use apps with one command",
6
6
  "author": "mcp-use, Inc.",