create-better-t-stack 2.41.3 → 2.41.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.41.3",
3
+ "version": "2.41.4",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -2,4 +2,63 @@
2
2
  # See https://okigu.com/ruler for documentation.
3
3
 
4
4
  # Default agents to run when --agents is not specified
5
- default_agents = []
5
+ default_agents = []
6
+
7
+ # --- Global MCP Server Configuration ---
8
+ [mcp]
9
+ # Enable/disable MCP propagation globally (default: true)
10
+ enabled = true
11
+ # Global merge strategy: 'merge' or 'overwrite' (default: 'merge')
12
+ merge_strategy = "merge"
13
+
14
+ # --- MCP Server Definitions ---
15
+ [mcp_servers.context7]
16
+ command = "npx"
17
+ args = ["-y", "@upstash/context7-mcp"]
18
+
19
+ {{#if (or (eq runtime "workers") (eq webDeploy "wrangler"))}}
20
+ [mcp_servers.cloudflare]
21
+ command = "npx"
22
+ args = ["mcp-remote", "https://docs.mcp.cloudflare.com/sse"]
23
+ {{/if}}
24
+
25
+ {{#if (eq backend "convex")}}
26
+ [mcp_servers.convex]
27
+ command = "npx"
28
+ args = ["-y", "convex@latest", "mcp", "start"]
29
+ {{/if}}
30
+
31
+ {{#if (or (includes frontend "tanstack-router") (includes frontend "react-router") (includes frontend "tanstack-start") (includes frontend "next"))}}
32
+ [mcp_servers.shadcn]
33
+ command = "npx"
34
+ args = ["shadcn@latest", "mcp"]
35
+ {{/if}}
36
+
37
+ {{#if (eq dbSetup "planetscale")}}
38
+ [mcp_servers.planetscale]
39
+ command = "pscale"
40
+ args = ["mcp", "server"]
41
+ {{/if}}
42
+
43
+ {{#if (eq dbSetup "prisma-postgres")}}
44
+ [mcp_servers.prisma]
45
+ command = "npx"
46
+ args = ["-y", "prisma", "mcp"]
47
+ {{/if}}
48
+
49
+ {{#if (eq dbSetup "neon")}}
50
+ [mcp_servers.neon]
51
+ command = "npx"
52
+ args = ["-y", "mcp-remote@latest", "https://mcp.neon.tech/mcp"]
53
+ {{/if}}
54
+
55
+ {{#if (eq dbSetup "mongodb-atlas")}}
56
+ [mcp_servers.mongodb]
57
+ command = "npx"
58
+ args = ["-y", "mongodb-mcp-server", "--connectionString", "mongodb://localhost:27017/myDatabase", "--readOnly"]
59
+ {{/if}}
60
+
61
+ # --- Global .gitignore Configuration ---
62
+ [gitignore]
63
+ # Enable/disable automatic .gitignore updates (default: true)
64
+ enabled = true
@@ -19,6 +19,8 @@ dist/
19
19
  .alchemy
20
20
  /.next/
21
21
  .vercel
22
+ prisma/generated/
23
+
22
24
 
23
25
  # deps
24
26
  node_modules/
@@ -1,18 +0,0 @@
1
- {
2
- "mcpServers": {
3
- "context7": {
4
- "type": "stdio",
5
- "command": "npx",
6
- "args": ["-y", "@upstash/context7-mcp"]
7
- }{{#if (or (eq runtime "workers") (eq webDeploy "wrangler"))}},
8
- "cloudflare": {
9
- "command": "npx",
10
- "args": ["mcp-remote", "https://docs.mcp.cloudflare.com/sse"]
11
- }{{/if}}{{#if (eq backend "convex")}},
12
- "convex": {
13
- "command": "npx",
14
- "args": ["-y", "convex@latest", "mcp", "start"]
15
- }
16
- {{/if}}
17
- }
18
- }