@writepanda/mcp 1.23.1 → 1.24.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 +34 -0
- package/package.json +1 -1
package/bin/server.mjs
CHANGED
|
@@ -1348,6 +1348,40 @@ const TOOLS = [
|
|
|
1348
1348
|
inputSchema: { type: "object", properties: {} },
|
|
1349
1349
|
command: "motion.themes",
|
|
1350
1350
|
},
|
|
1351
|
+
{
|
|
1352
|
+
name: "media_generate_image",
|
|
1353
|
+
description:
|
|
1354
|
+
'Generate a single image via Replicate gpt-image-2 — for B-roll, concept stills, reference frames. Project-agnostic; writes to <userData>/generated-images/ and returns { imagePath, prompt, aspectRatio, predictionId }. The canonical B-roll workflow is: media_generate_image → motion_render_html (Ken-Burns + vignette wrap to a WebM) → project_add_motion_graphic — see SKILL.md "B-roll generation". Aspect ratios are gpt-image-2 native (1:1 / 3:2 / 2:3). For 16:9 video B-roll, generate 3:2 and crop in the wrap; for 9:16, generate 2:3. Requires the user\'s Replicate API key (Settings → Integrations).',
|
|
1355
|
+
inputSchema: {
|
|
1356
|
+
type: "object",
|
|
1357
|
+
properties: {
|
|
1358
|
+
prompt: {
|
|
1359
|
+
type: "string",
|
|
1360
|
+
description:
|
|
1361
|
+
"Image-gen prompt. Be visual: lighting, framing, palette, mood. Avoid mentioning text overlays — those land better via the motion-graphic wrap.",
|
|
1362
|
+
},
|
|
1363
|
+
aspectRatio: {
|
|
1364
|
+
type: "string",
|
|
1365
|
+
description: "'1:1' | '3:2' (default) | '2:3'.",
|
|
1366
|
+
},
|
|
1367
|
+
quality: {
|
|
1368
|
+
type: "string",
|
|
1369
|
+
description: "'low' (~½ cost, good for iteration) | 'medium' (default) | 'high'.",
|
|
1370
|
+
},
|
|
1371
|
+
referenceImagePath: {
|
|
1372
|
+
type: "string",
|
|
1373
|
+
description:
|
|
1374
|
+
"Optional reference image — absolute path or https URL — for style transfer / continuity across multiple B-roll stills.",
|
|
1375
|
+
},
|
|
1376
|
+
outputName: {
|
|
1377
|
+
type: "string",
|
|
1378
|
+
description: "Optional file-stem hint. Slugified; timestamp appended automatically.",
|
|
1379
|
+
},
|
|
1380
|
+
},
|
|
1381
|
+
required: ["prompt"],
|
|
1382
|
+
},
|
|
1383
|
+
command: "media.generate-image",
|
|
1384
|
+
},
|
|
1351
1385
|
{
|
|
1352
1386
|
name: "motion_generate",
|
|
1353
1387
|
description:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@writepanda/mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.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",
|