Skip to content

Commit f3f3a96

Browse files
committed
fix: minor MCP mistake
1 parent 25ac429 commit f3f3a96

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/mcp.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ server.tool(
8383
'start',
8484
'store',
8585
'tanstack-query',
86+
'tanchat',
8687
]),
8788
)
8889
.describe('The IDs of the add-ons to install'),
@@ -169,7 +170,16 @@ server.tool(
169170
),
170171
cwd: z.string().describe('The directory to create the application in'),
171172
addOns: z
172-
.array(z.enum(['solid-ui', 'form', 'sentry', 'store', 'tanstack-query']))
173+
.array(
174+
z.enum([
175+
'solid-ui',
176+
'form',
177+
'sentry',
178+
'store',
179+
'tanstack-query',
180+
'tanchat',
181+
]),
182+
)
173183
.describe('The IDs of the add-ons to install'),
174184
},
175185
async ({ projectName, addOns, cwd }) => {

0 commit comments

Comments
 (0)