create-better-t-stack 3.23.0 → 3.23.1

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 (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -98,7 +98,13 @@ create-better-t-stack schema --name cli
98
98
  npx create-better-t-stack@latest mcp
99
99
  ```
100
100
 
101
- When you scaffold with the `mcp` addon, Better T Stack itself can also be installed into supported agent configs through `add-mcp` using a package runner command instead of assuming a global CLI install, for example `npx create-better-t-stack@latest mcp` or `bunx create-better-t-stack@latest mcp`.
101
+ To install Better T Stack into supported agent configs with `add-mcp` and avoid relying on a global CLI install:
102
+
103
+ ```bash
104
+ npx -y add-mcp@latest "npx -y create-better-t-stack@latest mcp"
105
+ ```
106
+
107
+ When you scaffold with the `mcp` addon, Better T Stack itself can also be installed into supported agent configs through `add-mcp` using a package runner command instead of assuming a global CLI install. For Bun projects, the generated config uses the equivalent `bunx create-better-t-stack@latest mcp` server command inside `add-mcp`.
102
108
 
103
109
  For MCP project creation, prefer `install: false`. Long dependency installs can exceed common MCP client request timeouts, so the safest flow is to scaffold first and run your package manager install command afterward in the project directory.
104
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "3.23.0",
3
+ "version": "3.23.1",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "keywords": [
6
6
  "better-auth",
@@ -70,8 +70,8 @@
70
70
  "prepublishOnly": "npm run build"
71
71
  },
72
72
  "dependencies": {
73
- "@better-t-stack/template-generator": "^3.23.0",
74
- "@better-t-stack/types": "^3.23.0",
73
+ "@better-t-stack/template-generator": "^3.23.1",
74
+ "@better-t-stack/types": "^3.23.1",
75
75
  "@clack/core": "^1.1.0",
76
76
  "@clack/prompts": "^1.1.0",
77
77
  "@modelcontextprotocol/sdk": "1.27.1",