@mcp-use/cli 2.14.1-canary.0 → 2.15.0-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/dist/index.cjs +218 -77
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +216 -75
- package/dist/index.js.map +1 -1
- package/dist/utils/update-check.d.ts +6 -0
- package/dist/utils/update-check.d.ts.map +1 -0
- package/package.json +10 -10
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Check npm for a newer version of `mcp-use` and print a notification when
|
|
3
|
+
* one is available. Runs silently on any error so it never interrupts the CLI.
|
|
4
|
+
*/
|
|
5
|
+
export declare function notifyIfUpdateAvailable(projectPath: string | undefined): Promise<void>;
|
|
6
|
+
//# sourceMappingURL=update-check.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-check.d.ts","sourceRoot":"","sources":["../../src/utils/update-check.ts"],"names":[],"mappings":"AAyIA;;;GAGG;AACH,wBAAsB,uBAAuB,CAC3C,WAAW,EAAE,MAAM,GAAG,SAAS,GAC9B,OAAO,CAAC,IAAI,CAAC,CAwBf"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-use/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.15.0-canary.2",
|
|
5
5
|
"description": "The mcp-use CLI is a tool for building and deploying MCP servers with support for ChatGPT Apps, Code Mode, OAuth, Notifications, Sampling, Observability and more.",
|
|
6
6
|
"author": "mcp-use, Inc.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -41,26 +41,26 @@
|
|
|
41
41
|
"react-router-dom": "^7.12.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@tailwindcss/vite": "^4.
|
|
45
|
-
"@vitejs/plugin-react": "^5.1.
|
|
44
|
+
"@tailwindcss/vite": "^4.2.0",
|
|
45
|
+
"@vitejs/plugin-react": "^5.1.4",
|
|
46
46
|
"chalk": "^5.6.2",
|
|
47
47
|
"chokidar": "^5.0.0",
|
|
48
48
|
"commander": "^14.0.2",
|
|
49
|
-
"dotenv": "^17.
|
|
49
|
+
"dotenv": "^17.3.1",
|
|
50
50
|
"esbuild": "0.27.1",
|
|
51
|
-
"globby": "^16.1.
|
|
51
|
+
"globby": "^16.1.1",
|
|
52
52
|
"open": "^11.0.0",
|
|
53
|
+
"tar": "^7.5.9",
|
|
53
54
|
"tsx": "^4.21.0",
|
|
54
55
|
"vite": "^7.3.1",
|
|
55
56
|
"vite-plugin-singlefile": "^2.0.3",
|
|
56
|
-
"tar": "^7.4.3",
|
|
57
57
|
"ws": "^8.19.0",
|
|
58
|
-
"zod": "
|
|
59
|
-
"@mcp-use/inspector": "0.
|
|
60
|
-
"mcp-use": "1.
|
|
58
|
+
"zod": "4.3.5",
|
|
59
|
+
"@mcp-use/inspector": "0.22.0-canary.2",
|
|
60
|
+
"mcp-use": "1.20.0-canary.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@types/tar": "^
|
|
63
|
+
"@types/tar": "^7.0.87",
|
|
64
64
|
"@types/ws": "^8.18.1",
|
|
65
65
|
"vitest": "^4.0.17"
|
|
66
66
|
},
|