@mirrai/mcp-server 0.9.0 → 0.9.1
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/dist/tool-contracts.js +1 -1
- package/package.json +1 -1
package/dist/tool-contracts.js
CHANGED
|
@@ -266,7 +266,7 @@ export const SHARED_TOOL_DEFINITIONS = [
|
|
|
266
266
|
schema: z.object({
|
|
267
267
|
content: z.string().describe('Topic or content to generate carousel from'),
|
|
268
268
|
aspectRatio: z.enum(['1:1', '4:5', '16:9', '9:16', '3:4']).default('1:1').describe('Aspect ratio'),
|
|
269
|
-
slideCount: z.number().min(
|
|
269
|
+
slideCount: z.number().min(1).max(10).default(5).describe('Number of slides'),
|
|
270
270
|
mode: z.enum(['follow', 'creative']).default('creative').describe('Generation mode: follow (structured) or creative (freeform)'),
|
|
271
271
|
outputLanguage: z.enum(OUTPUT_LANGUAGE_CODES).default('auto').describe('Output language code. Use auto to detect from input (auto, ko, en, ja, zh, es, fr, de, pt, ar).'),
|
|
272
272
|
presetId: z.string().optional().describe('Preset template ID. If omitted, auto-selected from system presets by keyword matching.'),
|