@post-ripple/mcp 0.7.0 → 0.8.0
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/index.js +8 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -127,13 +127,13 @@ const slideTextStyleSchema = z
|
|
|
127
127
|
.optional(),
|
|
128
128
|
color: z.string().optional().describe("Text color (hex)"),
|
|
129
129
|
treatment: z
|
|
130
|
-
.enum(["none", "shadow", "outline", "highlight"])
|
|
130
|
+
.enum(["none", "shadow", "outline", "highlight", "bar"])
|
|
131
131
|
.optional()
|
|
132
|
-
.describe("'highlight' = solid box
|
|
132
|
+
.describe("'highlight' = solid box hugging each line (classic TikTok caption); 'bar' = full-width translucent band behind the text (subtitle look)"),
|
|
133
133
|
accentColor: z
|
|
134
134
|
.string()
|
|
135
135
|
.optional()
|
|
136
|
-
.describe("Box color for 'highlight' / stroke color for 'outline' (hex)"),
|
|
136
|
+
.describe("Box color for 'highlight' / stroke color for 'outline' / band color for 'bar' (hex)"),
|
|
137
137
|
fontScale: z.number().min(0.5).max(2.5).optional(),
|
|
138
138
|
x: z.number().min(0).max(1).optional().describe("Anchor x (0..1 of canvas width)"),
|
|
139
139
|
y: z.number().min(0).max(1).optional().describe("Top y (0..1 of canvas height)"),
|
|
@@ -321,11 +321,14 @@ const captionStyleSchema = z
|
|
|
321
321
|
.enum(["classic", "impact", "serif", "typewriter", "handwriting"])
|
|
322
322
|
.optional(),
|
|
323
323
|
color: z.string().optional().describe("Text color, hex (default white)"),
|
|
324
|
-
treatment: z
|
|
324
|
+
treatment: z
|
|
325
|
+
.enum(["none", "shadow", "outline", "highlight", "bar"])
|
|
326
|
+
.optional()
|
|
327
|
+
.describe("'highlight' = box hugging each line; 'bar' = full-width translucent band behind the text (subtitle look)"),
|
|
325
328
|
accentColor: z
|
|
326
329
|
.string()
|
|
327
330
|
.optional()
|
|
328
|
-
.describe("Highlight box / outline stroke color, hex"),
|
|
331
|
+
.describe("Highlight box / outline stroke / 'bar' band color, hex"),
|
|
329
332
|
fontScale: z
|
|
330
333
|
.number()
|
|
331
334
|
.optional()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@post-ripple/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "MCP server that lets AI agents (Claude Code, Codex, opencode) manage a Post Ripple workspace: content, scheduling, publishing, and analytics.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|