@mcp-use/cli 2.14.0-canary.0 → 2.14.0
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 +8 -8
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -119,7 +119,7 @@ mcp-use start [options]
|
|
|
119
119
|
|
|
120
120
|
### Cloud Deployment
|
|
121
121
|
|
|
122
|
-
Deploy your MCP server to
|
|
122
|
+
Deploy your MCP server to production via [manufact.com](https://manufact.com):
|
|
123
123
|
|
|
124
124
|
```bash
|
|
125
125
|
# Login to mcp-use cloud
|
|
@@ -403,20 +403,20 @@ EXPOSE 3000
|
|
|
403
403
|
CMD ["npm", "start"]
|
|
404
404
|
```
|
|
405
405
|
|
|
406
|
-
###
|
|
406
|
+
### Serving Built Widgets
|
|
407
407
|
|
|
408
|
-
|
|
408
|
+
You can serve the built widgets from any Hono app using `serveStatic`:
|
|
409
409
|
|
|
410
410
|
```ts
|
|
411
|
-
import
|
|
412
|
-
import
|
|
411
|
+
import { Hono } from "hono";
|
|
412
|
+
import { serveStatic } from "hono/node-server/serve-static";
|
|
413
413
|
|
|
414
|
-
const app =
|
|
414
|
+
const app = new Hono();
|
|
415
415
|
|
|
416
416
|
// Serve MCP widgets
|
|
417
417
|
app.use(
|
|
418
|
-
"/widgets",
|
|
419
|
-
|
|
418
|
+
"/widgets/*",
|
|
419
|
+
serveStatic({ root: "./dist/resources/mcp-use/widgets" })
|
|
420
420
|
);
|
|
421
421
|
|
|
422
422
|
// Your other routes...
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-use/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.14.0
|
|
4
|
+
"version": "2.14.0",
|
|
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",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"tar": "^7.4.3",
|
|
57
57
|
"ws": "^8.19.0",
|
|
58
58
|
"zod": "^4.2.0",
|
|
59
|
-
"@mcp-use/inspector": "0.21.1
|
|
60
|
-
"mcp-use": "1.19.3
|
|
59
|
+
"@mcp-use/inspector": "0.21.1",
|
|
60
|
+
"mcp-use": "1.19.3"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@types/tar": "^6.1.13",
|