@writepanda/mcp 1.42.0 → 1.44.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 +19 -1
- package/package.json +1 -1
package/bin/server.mjs
CHANGED
|
@@ -1394,6 +1394,23 @@ const TOOLS = [
|
|
|
1394
1394
|
},
|
|
1395
1395
|
command: "project.set-clip-lut",
|
|
1396
1396
|
},
|
|
1397
|
+
{
|
|
1398
|
+
name: "project_set_clip_kind",
|
|
1399
|
+
description:
|
|
1400
|
+
"Stamp a clip's capture origin authoritatively: kind = camera | screen | upload. project.read returns each clip's kind (your visual-strategy signal: camera → designed segments + emphasis zooms; screen → cursor zooms). On pre-v1.28 projects kind wasn't recorded, so project.read INFERS it (flagged kindInferred:true) — and inference can be wrong. Use this to correct/lock it. `camera` = talking-head; `screen` = screen recording (maybe with webcam PiP); `upload` = imported file.",
|
|
1401
|
+
inputSchema: {
|
|
1402
|
+
type: "object",
|
|
1403
|
+
properties: {
|
|
1404
|
+
id: { type: "string" },
|
|
1405
|
+
path: { type: "string" },
|
|
1406
|
+
clipId: { type: "string", description: "Clip id from project_read mainTrack.clips[n].id" },
|
|
1407
|
+
kind: { type: "string", enum: ["camera", "screen", "upload"] },
|
|
1408
|
+
expectedRevision: { type: "number" },
|
|
1409
|
+
},
|
|
1410
|
+
required: ["clipId", "kind"],
|
|
1411
|
+
},
|
|
1412
|
+
command: "project.set-clip-kind",
|
|
1413
|
+
},
|
|
1397
1414
|
|
|
1398
1415
|
// ── transcript-based editing ────────────────────────────────────
|
|
1399
1416
|
{
|
|
@@ -1520,7 +1537,8 @@ const TOOLS = [
|
|
|
1520
1537
|
path: { type: "string" },
|
|
1521
1538
|
thresholdMs: {
|
|
1522
1539
|
type: "number",
|
|
1523
|
-
description:
|
|
1540
|
+
description:
|
|
1541
|
+
"Gaps longer than this are trimmed. Default 500ms — same threshold as the UI Remove Silences button, so the agent removes the same silences a manual click would.",
|
|
1524
1542
|
},
|
|
1525
1543
|
expectedRevision: { type: "number" },
|
|
1526
1544
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@writepanda/mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.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",
|