@kolbo/mcp 1.5.2 → 1.5.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolbo/mcp",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "Kolbo AI MCP Server - Generate images, videos, music, speech, and sound effects from Claude Code",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/tools/chat.js CHANGED
@@ -13,7 +13,7 @@ function registerChatTools(server, client) {
13
13
  'Send a chat message to Kolbo AI. Starts a new conversation (omit session_id) or continues an existing one. Returns the assistant response when complete. Supports image/video/audio analysis via media_urls — pass public URLs and the model auto-routes to a vision-capable model (e.g. Gemini) when media is detected. Supports web search and deep think modes.',
14
14
  {
15
15
  message: z.string().describe('The user message to send'),
16
- model: z.string().optional().describe('Model identifier (e.g. "gpt-4o", "claude-sonnet-4-5", "gemini-2.5-pro"). Omit for Smart Select (auto). For image/video/audio analysis, prefer "gemini-2.5-pro" or omit to auto-route.'),
16
+ model: z.string().optional().describe('Model identifier (e.g. "gpt-4o", "claude-sonnet-4-6"). Omit for Smart Select (auto) — recommended default. When media_urls contains video or audio, Smart Select automatically routes to a Gemini vision model regardless of this field.'),
17
17
  session_id: z.string().optional().describe('Existing chat session ID to continue. Omit to start a new conversation.'),
18
18
  system_prompt: z.string().optional().describe('System prompt for the conversation. Only applied when creating a new session.'),
19
19
  web_search: z.boolean().optional().describe('Enable web search for this message. Default: false'),
@@ -90,7 +90,7 @@ function registerGenerateTools(server, client) {
90
90
  // ─── generate_creative_director ─────────────────────────────
91
91
  server.tool(
92
92
  'generate_creative_director',
93
- 'Generate a multi-scene coordinated set from ONE creative brief. Use this INSTEAD of calling generate_image/generate_video multiple times when the user wants a storyboard, multi-scene ad, product showcase, or any set of related outputs that should share visual language. Produces 1–8 scenes in a single request with consistent style. Supports image mode and video mode (`workflow_type`). Visual DNA and moodboard references keep character/style consistent across every scene.',
93
+ 'Generate 2–8 related images or videos as one coherent set from a single creative brief. Use this when the user gives a general brief ("make 4 product shots", "create a storyboard") and you are planning the scenes it handles style consistency and runs scenes in parallel. If the user explicitly provides separate prompts for each image, use parallel generate_image calls instead. Supports image and video modes (`workflow_type`). Visual DNA and moodboard references keep character/style consistent across every scene.',
94
94
  {
95
95
  prompt: z.string().describe('Creative brief or concept describing the full set of scenes to generate'),
96
96
  scene_count: z.number().optional().describe('Number of scenes to generate, 1–8. Default: 4'),