@omnisocials/mcp-server 1.3.4 → 1.3.5
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/build/tools/posts.js +4 -4
- package/package.json +1 -1
package/build/tools/posts.js
CHANGED
|
@@ -216,14 +216,14 @@ Do NOT call this tool without media when creating stories, reels, Instagram post
|
|
|
216
216
|
link: z.string().optional(),
|
|
217
217
|
}).optional().describe("Pinterest-specific options"),
|
|
218
218
|
youtube: z.object({
|
|
219
|
-
title: z.string().optional(),
|
|
219
|
+
title: z.string().optional().describe("Short title shown on YouTube. Falls back to \"YouTube Short\" when omitted."),
|
|
220
220
|
tags: z.array(z.string()).optional(),
|
|
221
221
|
privacy_status: z.enum(["public", "private", "unlisted"]).optional(),
|
|
222
222
|
category_id: z.string().optional(),
|
|
223
223
|
made_for_kids: z.boolean().optional(),
|
|
224
224
|
notify_subscribers: z.boolean().optional(),
|
|
225
225
|
contains_synthetic_media: z.boolean().optional(),
|
|
226
|
-
}).optional().describe("YouTube Shorts options"),
|
|
226
|
+
}).optional().describe("YouTube Shorts options. Only applies when type is 'reel' and youtube is among the selected channels."),
|
|
227
227
|
instagram: z.object({
|
|
228
228
|
share_to_feed: z.boolean().optional(),
|
|
229
229
|
thumbnail_type: z.enum(["from-video", "from-library"]).optional(),
|
|
@@ -329,10 +329,10 @@ Do NOT call without required media — it will fail.`, {
|
|
|
329
329
|
link: z.string().optional(),
|
|
330
330
|
}).optional().describe("Pinterest-specific options"),
|
|
331
331
|
youtube: z.object({
|
|
332
|
-
title: z.string().optional(),
|
|
332
|
+
title: z.string().optional().describe("Short title shown on YouTube."),
|
|
333
333
|
tags: z.array(z.string()).optional(),
|
|
334
334
|
privacy_status: z.enum(["public", "private", "unlisted"]).optional(),
|
|
335
|
-
}).optional().describe("YouTube Shorts options"),
|
|
335
|
+
}).optional().describe("YouTube Shorts options. Only applies when type is 'reel' and youtube is among the selected channels."),
|
|
336
336
|
tiktok: z.object({
|
|
337
337
|
privacy_level: z.enum(["PUBLIC_TO_EVERYONE", "MUTUAL_FOLLOW_FRIENDS", "FOLLOWER_OF_CREATOR", "SELF_ONLY"]).optional(),
|
|
338
338
|
}).optional().describe("TikTok options"),
|
package/package.json
CHANGED