@hype-stack/cli 1.11.0 → 1.12.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.
Files changed (36) hide show
  1. package/README.md +4 -1
  2. package/dist/{cli-CKs-7-fR.js → cli-C9FAyu0n.js} +3234 -2938
  3. package/dist/cli.d.ts.map +1 -1
  4. package/dist/commands/compose.d.ts.map +1 -1
  5. package/dist/commands/deploy-dispatch.d.ts.map +1 -1
  6. package/dist/commands/deploy-extension.d.ts.map +1 -1
  7. package/dist/commands/deploy-mobile.d.ts.map +1 -1
  8. package/dist/commands/deploy.d.ts.map +1 -1
  9. package/dist/commands/mcp.d.ts +65 -5
  10. package/dist/commands/mcp.d.ts.map +1 -1
  11. package/dist/commands/onboard.d.ts.map +1 -1
  12. package/dist/config/bin.js +2 -2
  13. package/dist/core/codemods.d.ts.map +1 -1
  14. package/dist/core/env-secrets.d.ts.map +1 -1
  15. package/dist/core/login.d.ts +13 -1
  16. package/dist/core/login.d.ts.map +1 -1
  17. package/dist/core/mcp-config.d.ts +39 -1
  18. package/dist/core/mcp-config.d.ts.map +1 -1
  19. package/dist/core/mcp-probe.d.ts +44 -0
  20. package/dist/core/mcp-probe.d.ts.map +1 -0
  21. package/dist/core/pack-slots.d.ts.map +1 -1
  22. package/dist/core/ports.d.ts.map +1 -1
  23. package/dist/core/post-clone.d.ts.map +1 -1
  24. package/dist/core/post-setup.d.ts.map +1 -1
  25. package/dist/core/variants.d.ts.map +1 -1
  26. package/dist/deploy/auth.d.ts.map +1 -1
  27. package/dist/deploy/extension/pipeline.d.ts.map +1 -1
  28. package/dist/deploy/mobile/pipeline.d.ts.map +1 -1
  29. package/dist/deploy/tools.d.ts.map +1 -1
  30. package/dist/index.js +1 -1
  31. package/dist/mcp/server.d.ts.map +1 -1
  32. package/dist/mcp/tools/context.d.ts +6 -2
  33. package/dist/mcp/tools/context.d.ts.map +1 -1
  34. package/dist/mcp/tools/create-application.d.ts.map +1 -1
  35. package/dist/types/types.d.ts.map +1 -1
  36. package/package.json +1 -1
package/README.md CHANGED
@@ -51,7 +51,8 @@ Prefer starting from a finished app? Browse the [templates](https://www.hype-sta
51
51
  | `deploy` | Deploy web apps and the server, and provision Postgres, Valkey, and a bucket |
52
52
  | `deploy mobile` | Build (and optionally submit) the Expo app through EAS |
53
53
  | `deploy extension` | Build the browser extension and publish it to the Chrome, Edge, and Firefox stores |
54
- | `mcp install` | Register the MCP server in your AI editor's config |
54
+ | `mcp install` | Pick editors, create an API key in the browser, write their MCP configs, verify the server starts |
55
+ | `mcp check` | Launch the server from an editor's config the way the editor would, and report why it fails |
55
56
  | `login` / `logout` | Authenticate to install packs your organization owns |
56
57
 
57
58
  Every command has `--help`, and the deploy commands take `--dry-run` to print every step without creating anything.
@@ -68,6 +69,8 @@ The CLI ships a [Model Context Protocol](https://www.hype-stack.dev/mcp) server,
68
69
  npx @hype-stack/cli mcp install
69
70
  ```
70
71
 
72
+ It asks which editors, opens the browser once to create an API key for them, writes their configs, and starts the server once to confirm it comes up.
73
+
71
74
  ## Links
72
75
 
73
76
  - [Website](https://www.hype-stack.dev)