@telora/mcp-products 0.22.40 → 0.22.41
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.
|
@@ -25,7 +25,7 @@ const focusToolSchema = {
|
|
|
25
25
|
productId: z.string().uuid().optional().describe("Product UUID (required for list, create, reorder)"),
|
|
26
26
|
focusId: z.string().uuid().optional().describe("Focus UUID (required for update)"),
|
|
27
27
|
name: z.string().max(200).optional().describe("Focus name (required for create)"),
|
|
28
|
-
description: z.string().max(
|
|
28
|
+
description: z.string().max(4000).optional().describe("What this focus aims to achieve"),
|
|
29
29
|
targetDate: z.string().optional().describe("Target date (ISO 8601)"),
|
|
30
30
|
status: z.enum(FOCUS_STATUSES).optional().describe("Focus status (update only)"),
|
|
31
31
|
readOnly: z.boolean().optional().describe("Whether this focus runs in read-only audit mode (update only)"),
|