@omnisocials/mcp-server 1.3.2 → 1.3.3

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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -189,6 +189,17 @@ The agent-skills package uses a CLI + SKILL.md approach that works in any AI cod
189
189
 
190
190
  Full API docs: [docs.omnisocials.com](https://docs.omnisocials.com)
191
191
 
192
+ ## Changelog
193
+
194
+ ### 1.3.2 / 1.3.3
195
+
196
+ - **Fixed:** `create_post` and `create_and_publish_post` no longer throw `str.replace is not a function` when the API returns per-platform `content` as an object. Response formatters now wrapped in a safe fallback so a formatting throw can never surface as a tool error (closes the duplicate-on-retry trap).
197
+ - **Fixed:** `list_posts` and `get_post` now render the correct **Channels** and **Scheduled** values. Previously read the wrong field names (`p.channels` / `p.scheduled_at`) and fell through to `created_at` for the date.
198
+ - **Fixed:** Date rendering always includes an explicit `UTC` suffix. Agents convert to local time when answering the user.
199
+ - **Fixed:** `list_media` now labels video files as `Video` (was showing `Image` for every `.mp4`).
200
+
201
+ (1.3.3 is a metadata republish of 1.3.2 to refresh the README on npmjs.com. No code changes between 1.3.2 and 1.3.3.)
202
+
192
203
  ## License
193
204
 
194
205
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnisocials/mcp-server",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
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",