@omnisocials/mcp-server 1.3.4 → 1.3.6

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/README.md CHANGED
@@ -191,6 +191,15 @@ Full API docs: [docs.omnisocials.com](https://docs.omnisocials.com)
191
191
 
192
192
  ## Changelog
193
193
 
194
+ ### 1.3.6
195
+
196
+ - Metadata-only republish of 1.3.5 to refresh the README on npmjs.com. No code changes from 1.3.5.
197
+
198
+ ### 1.3.5
199
+
200
+ - **Fixed:** YouTube Shorts `title`, `tags`, `privacy_status`, `category_id`, `made_for_kids`, `notify_subscribers`, and `contains_synthetic_media` now actually take effect when publishing through MCP/API. Previously the publisher silently ignored these and every Short went live as "YouTube Short" with default privacy. Companion server fix — clients on 1.3.4 also benefit once the backend deploys; 1.3.5 only refreshes the tool descriptions.
201
+ - Tool descriptions clarify that the `youtube` options block only applies when `type` is `"reel"` and `youtube` is among the selected channels, and that `title` falls back to `"YouTube Short"` when omitted.
202
+
194
203
  ### 1.3.4
195
204
 
196
205
  - **Prevent accidental publishing.** Tool descriptions now front-load the difference: `create_post` is explicitly the **draft** path, `create_and_publish_post` carries a `STOP` gate listing every phrasing ("draft", "schedule", "review first", "save it", etc.) that should make the agent fall back to `create_post`. Default is "create draft" whenever there's ambiguity.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnisocials/mcp-server",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "MCP server for OmniSocials API - manage social media posts, media, accounts, analytics, and webhooks",
5
5
  "type": "module",
6
6
  "main": "build/index.js",