@writepanda/mcp 1.44.0 → 1.45.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/bin/server.mjs +48 -1
- package/package.json +1 -1
package/bin/server.mjs
CHANGED
|
@@ -275,6 +275,52 @@ const TOOLS = [
|
|
|
275
275
|
},
|
|
276
276
|
command: "workspace.contents",
|
|
277
277
|
},
|
|
278
|
+
{
|
|
279
|
+
name: "workspace_get_brand",
|
|
280
|
+
description:
|
|
281
|
+
"Return the active workspace's brand kit (name, tagline, colors, typography, voice, logoPath). Use BEFORE authoring custom motion graphics, lower-thirds, outros, or thumbnails — the v1.32 motion-philosophy contract requires reading the brand and using its values verbatim instead of inventing a default look. Returns { brand: null } if no brand is configured (in which case ASK the user for at least the primary color + light/dark mood before authoring).",
|
|
282
|
+
inputSchema: { type: "object", properties: {} },
|
|
283
|
+
command: "workspace.get-brand",
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
name: "workspace_set_brand",
|
|
287
|
+
description:
|
|
288
|
+
"Write/replace the active workspace's brand kit. Pass any subset of fields under `brand`. Hex colors are normalized to #rrggbb on the way in; empty strings are dropped; unknown voice values are ignored. Pass brand=null (or omit it) to clear the brand entirely. Don't call this on every turn — only when the user explicitly tells you their brand is changing.",
|
|
289
|
+
inputSchema: {
|
|
290
|
+
type: "object",
|
|
291
|
+
properties: {
|
|
292
|
+
brand: {
|
|
293
|
+
type: ["object", "null"],
|
|
294
|
+
properties: {
|
|
295
|
+
name: { type: "string" },
|
|
296
|
+
tagline: { type: "string" },
|
|
297
|
+
colors: {
|
|
298
|
+
type: "object",
|
|
299
|
+
properties: {
|
|
300
|
+
primary: { type: "string" },
|
|
301
|
+
accent: { type: "string" },
|
|
302
|
+
ink: { type: "string" },
|
|
303
|
+
background: { type: "string" },
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
typography: {
|
|
307
|
+
type: "object",
|
|
308
|
+
properties: {
|
|
309
|
+
display: { type: "string" },
|
|
310
|
+
body: { type: "string" },
|
|
311
|
+
},
|
|
312
|
+
},
|
|
313
|
+
voice: {
|
|
314
|
+
type: "string",
|
|
315
|
+
enum: ["minimal", "bold", "editorial", "casual", "corporate", "playful"],
|
|
316
|
+
},
|
|
317
|
+
logoPath: { type: "string" },
|
|
318
|
+
},
|
|
319
|
+
},
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
command: "workspace.set-brand",
|
|
323
|
+
},
|
|
278
324
|
|
|
279
325
|
// ── YouTube publishing (v1.19) ──────────────────────────────────
|
|
280
326
|
// Connect Google accounts per workspace, publish exports, edit
|
|
@@ -1712,7 +1758,8 @@ const TOOLS = [
|
|
|
1712
1758
|
properties: {
|
|
1713
1759
|
templateId: {
|
|
1714
1760
|
type: "string",
|
|
1715
|
-
description:
|
|
1761
|
+
description:
|
|
1762
|
+
"Template id from motion_list (e.g. creator-card, stat-reveal, split-panel).",
|
|
1716
1763
|
},
|
|
1717
1764
|
slots: {
|
|
1718
1765
|
type: "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@writepanda/mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.45.0",
|
|
4
4
|
"description": "Model Context Protocol server for PandaStudio. Exposes the desktop video editor's automation surface to Cursor, Continue, Cline, Claude Desktop, and any MCP-compliant client.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pandastudio",
|