fix(get-task): makes the projectRoot argument required to prevent errors when getting tasks.

This commit is contained in:
Eyal Toledano
2025-06-11 14:31:37 -04:00
parent f43b5fdd75
commit f3fe481f3f

View File

@@ -65,7 +65,6 @@ export function registerShowTaskTool(server) {
), ),
projectRoot: z projectRoot: z
.string() .string()
.optional()
.describe( .describe(
'Absolute path to the project root directory (Optional, usually from session)' 'Absolute path to the project root directory (Optional, usually from session)'
) )