@writepanda/mcp 1.14.1 → 1.15.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.
Files changed (2) hide show
  1. package/bin/server.mjs +40 -1
  2. package/package.json +1 -1
package/bin/server.mjs CHANGED
@@ -731,6 +731,31 @@ const TOOLS = [
731
731
  },
732
732
  command: "project.remove-audio",
733
733
  },
734
+ {
735
+ name: "project_set_clip_lut",
736
+ description:
737
+ "Apply a color-grade LUT preset to a specific clip. Use asset_list_luts to browse available presets. The grade is applied in preview (CSS filter) and export (FFmpeg eq/hue chain). Pass 'none' to clear. Returns { clipId, lutPreset, lutIntensity }.",
738
+ inputSchema: {
739
+ type: "object",
740
+ properties: {
741
+ id: { type: "string" },
742
+ path: { type: "string" },
743
+ clipId: { type: "string", description: "Clip id from project_read mainTrack.clips[n].id" },
744
+ lutPreset: {
745
+ type: "string",
746
+ description:
747
+ "Preset id. none | cinematicTealOrange | cinematicShadowBlue | filmNoir | vintageKodak | modernVibrant | moodyDark | warmSunset | coolNordic | bleachBypass | vintagePolaroid | naturalEnhanced",
748
+ },
749
+ lutIntensity: {
750
+ type: "number",
751
+ description: "Blend strength 0–1. Defaults to 1 (full effect).",
752
+ },
753
+ expectedRevision: { type: "number" },
754
+ },
755
+ required: ["clipId", "lutPreset"],
756
+ },
757
+ command: "project.set-clip-lut",
758
+ },
734
759
 
735
760
  // ── transcript-based editing ────────────────────────────────────
736
761
  {
@@ -1073,6 +1098,20 @@ const TOOLS = [
1073
1098
  inputSchema: { type: "object", properties: {} },
1074
1099
  command: "asset.list-fx",
1075
1100
  },
1101
+ {
1102
+ name: "asset_list_music",
1103
+ description:
1104
+ "List every bundled background music track (id, title, category, mood, durationMs, absolutePath). Use absolutePath with project_add_audio to attach a track to a project.",
1105
+ inputSchema: { type: "object", properties: {} },
1106
+ command: "asset.list-music",
1107
+ },
1108
+ {
1109
+ name: "asset_list_luts",
1110
+ description:
1111
+ "List all available LUT color-grade presets (id, label, category). Pass the id to project_set_clip_lut. Categories: natural | cinematic | dramatic | vintage | modern.",
1112
+ inputSchema: { type: "object", properties: {} },
1113
+ command: "asset.list-luts",
1114
+ },
1076
1115
 
1077
1116
  // ── project-aware LLM ──────────────────────────────────────────
1078
1117
  {
@@ -1226,7 +1265,7 @@ const TOOLS = [
1226
1265
  const server = new Server(
1227
1266
  {
1228
1267
  name: "pandastudio",
1229
- version: "1.14.0",
1268
+ version: "1.15.0",
1230
1269
  },
1231
1270
  {
1232
1271
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@writepanda/mcp",
3
- "version": "1.14.1",
3
+ "version": "1.15.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",