posterly-mcp-server 0.24.0 → 0.24.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/lib/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const POSTERLY_MCP_VERSION = "0.24.
|
|
1
|
+
export declare const POSTERLY_MCP_VERSION = "0.24.1";
|
package/dist/lib/version.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
// tool set (minus the intentional pre-auth signup tools that only this stdio
|
|
6
6
|
// package exposes). `npm run check:mcp-parity` enforces both the version match
|
|
7
7
|
// and the tool-list match, and runs in the pre-commit hook.
|
|
8
|
-
export const POSTERLY_MCP_VERSION = '0.24.
|
|
8
|
+
export const POSTERLY_MCP_VERSION = '0.24.1';
|
|
@@ -106,7 +106,7 @@ export const createPostPayloadInputSchema = z.object({
|
|
|
106
106
|
post_type: z
|
|
107
107
|
.string()
|
|
108
108
|
.optional()
|
|
109
|
-
.describe('
|
|
109
|
+
.describe('Optional post type: text, image, video, carousel, reel, story, story_series, document, photo, cover_photo, x_thread, or threads_thread. Omit it for auto-detection from media. For TikTok photo posts, use photo/image/carousel or omit it; for Facebook cover photos, use cover_photo or platform_settings.post_type.'),
|
|
110
110
|
thread_posts: z
|
|
111
111
|
.array(z.string())
|
|
112
112
|
.optional()
|
|
@@ -81,7 +81,7 @@ export const updatePostTool = {
|
|
|
81
81
|
post_type: z
|
|
82
82
|
.string()
|
|
83
83
|
.optional()
|
|
84
|
-
.describe('New post type: text, image, video, carousel, reel, story'),
|
|
84
|
+
.describe('New post type: text, image, video, carousel, reel, story, story_series, document, photo, or cover_photo'),
|
|
85
85
|
instagram_settings: instagramSettingsSchema
|
|
86
86
|
.optional()
|
|
87
87
|
.describe('Instagram-specific updates: post_type, collaborators, user_tags, first_comment, media_alt_texts, is_trial_reel, graduation_strategy (defaults to MANUAL), reel_cover_url, reel_thumb_offset.'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "posterly-mcp-server",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.1",
|
|
4
4
|
"description": "MCP server for posterly: schedule and publish social media posts across 11 platforms from any MCP client (Claude, ChatGPT, Cursor, Windsurf, Cline, and more)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://www.poster.ly/mcp",
|
package/src/lib/version.ts
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
// tool set (minus the intentional pre-auth signup tools that only this stdio
|
|
6
6
|
// package exposes). `npm run check:mcp-parity` enforces both the version match
|
|
7
7
|
// and the tool-list match, and runs in the pre-commit hook.
|
|
8
|
-
export const POSTERLY_MCP_VERSION = '0.24.
|
|
8
|
+
export const POSTERLY_MCP_VERSION = '0.24.1';
|
package/src/tools/create-post.ts
CHANGED
|
@@ -110,7 +110,7 @@ export const createPostPayloadInputSchema = z.object({
|
|
|
110
110
|
post_type: z
|
|
111
111
|
.string()
|
|
112
112
|
.optional()
|
|
113
|
-
.describe('
|
|
113
|
+
.describe('Optional post type: text, image, video, carousel, reel, story, story_series, document, photo, cover_photo, x_thread, or threads_thread. Omit it for auto-detection from media. For TikTok photo posts, use photo/image/carousel or omit it; for Facebook cover photos, use cover_photo or platform_settings.post_type.'),
|
|
114
114
|
thread_posts: z
|
|
115
115
|
.array(z.string())
|
|
116
116
|
.optional()
|
package/src/tools/update-post.ts
CHANGED
|
@@ -86,7 +86,7 @@ export const updatePostTool = {
|
|
|
86
86
|
post_type: z
|
|
87
87
|
.string()
|
|
88
88
|
.optional()
|
|
89
|
-
.describe('New post type: text, image, video, carousel, reel, story'),
|
|
89
|
+
.describe('New post type: text, image, video, carousel, reel, story, story_series, document, photo, or cover_photo'),
|
|
90
90
|
instagram_settings: instagramSettingsSchema
|
|
91
91
|
.optional()
|
|
92
92
|
.describe('Instagram-specific updates: post_type, collaborators, user_tags, first_comment, media_alt_texts, is_trial_reel, graduation_strategy (defaults to MANUAL), reel_cover_url, reel_thumb_offset.'),
|