@tanstack/create-start 0.59.10 → 0.59.12

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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +4 -16
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @tanstack/create-start
2
2
 
3
+ ## 0.59.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Auto-generated changeset from semantic commits on main.
8
+
9
+ - fix(ci): use direct changeset publish args (b6f5ff5)
10
+
11
+ - Updated dependencies []:
12
+ - @tanstack/cli@0.61.1
13
+ - @tanstack/create@0.62.3
14
+
15
+ ## 0.59.11
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [[`78e3734`](https://github.com/TanStack/cli/commit/78e373444c5bcaf2ab59d2142e8b8b0cab415bbb), [`f33f8d4`](https://github.com/TanStack/cli/commit/f33f8d4954d9ad6771871257a4e1e58feee9b34d), [`16fcd67`](https://github.com/TanStack/cli/commit/16fcd674c0f74c1c62cf97b0042060d5a51981ef)]:
20
+ - @tanstack/cli@0.61.0
21
+ - @tanstack/create@0.62.2
22
+
3
23
  ## 0.59.10
4
24
 
5
25
  ### Patch Changes
package/README.md CHANGED
@@ -94,25 +94,13 @@ This will get you a list of all available add-ons for Solid.
94
94
  pnpm create @tanstack/start@latest --list-add-ons --framework solid
95
95
  ```
96
96
 
97
- ## MCP (Model Context Protocol) Support (experimental)
97
+ ## Agent Usage
98
98
 
99
- You can launch the `create-start-app` CLI with the `--mcp` flag to enable MCP support. Use this in your MCP enabled IDE to allow the Agent model to generate TanStack Start applications.
99
+ The CLI no longer includes an MCP server. Use direct CLI introspection commands instead:
100
100
 
101
101
  ```bash
102
- pnpm create @tanstack/start@latest --mcp
103
- ```
104
-
105
- Here is the JSON configuration for MCP support in many MCP clients.
106
-
107
- ```json
108
- {
109
- "mcpServers": {
110
- "create-start-app": {
111
- "command": "pnpm dlx",
112
- "args": ["create-start-app@latest", "--mcp"]
113
- }
114
- }
115
- }
102
+ pnpm create @tanstack/start@latest --list-add-ons
103
+ pnpm create @tanstack/start@latest --addon-details tanstack-query
116
104
  ```
117
105
 
118
106
  # Contributing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/create-start",
3
- "version": "0.59.10",
3
+ "version": "0.59.12",
4
4
  "description": "Tanstack Start Builder",
5
5
  "bin": "./dist/index.js",
6
6
  "type": "module",
@@ -24,8 +24,8 @@
24
24
  "author": "Jack Herrington <jherr@pobox.com>",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@tanstack/cli": "0.60.1",
28
- "@tanstack/create": "0.62.1"
27
+ "@tanstack/cli": "0.61.1",
28
+ "@tanstack/create": "0.62.3"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.13.4",