@mcp-use/cli 2.13.10 → 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 CHANGED
@@ -119,7 +119,7 @@ mcp-use start [options]
119
119
 
120
120
  ### Cloud Deployment
121
121
 
122
- Deploy your MCP server to mcp-use cloud:
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
- ### Integration with Existing Express Apps
406
+ ### Serving Built Widgets
407
407
 
408
- If you have an existing Express app, you can mount the built widgets:
408
+ You can serve the built widgets from any Hono app using `serveStatic`:
409
409
 
410
410
  ```ts
411
- import express from "express";
412
- import path from "path";
411
+ import { Hono } from "hono";
412
+ import { serveStatic } from "hono/node-server/serve-static";
413
413
 
414
- const app = express();
414
+ const app = new Hono();
415
415
 
416
416
  // Serve MCP widgets
417
417
  app.use(
418
- "/widgets",
419
- express.static(path.join(__dirname, "../dist/resources/mcp-use/widgets"))
418
+ "/widgets/*",
419
+ serveStatic({ root: "./dist/resources/mcp-use/widgets" })
420
420
  );
421
421
 
422
422
  // Your other routes...
@@ -0,0 +1,3 @@
1
+ import { Command } from "commander";
2
+ export declare function createSkillsCommand(): Command;
3
+ //# sourceMappingURL=skills.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skills.d.ts","sourceRoot":"","sources":["../../src/commands/skills.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA2GpC,wBAAgB,mBAAmB,IAAI,OAAO,CA4D7C"}