@writepanda/mcp 1.33.0 → 1.34.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 +18 -0
  2. package/package.json +1 -1
package/bin/server.mjs CHANGED
@@ -382,6 +382,24 @@ const TOOLS = [
382
382
  },
383
383
  command: "project.list",
384
384
  },
385
+ {
386
+ name: "project_set_folder",
387
+ description:
388
+ 'Move a project to a folder (organisational label shown on the Home page) or back to Unsorted. Folders are flat (no nesting) and scoped to the project\'s owning workspace. Identify the project by `id` (preferred) or `path`. Pass `folder: ""` (empty string) or omit the field to clear the folder and return the project to Unsorted. Returns { id, path, folder }. Use this when the user asks to organise, sort, label, group, archive, or categorise projects.',
389
+ inputSchema: {
390
+ type: "object",
391
+ properties: {
392
+ id: { type: "string", description: "Project UUID (preferred)." },
393
+ path: { type: "string", description: "Absolute project file path." },
394
+ folder: {
395
+ type: "string",
396
+ description:
397
+ "Folder label. Case-sensitive; whitespace is trimmed. Empty string or omitted = move to Unsorted.",
398
+ },
399
+ },
400
+ },
401
+ command: "project.setFolder",
402
+ },
385
403
  {
386
404
  name: "project_locate",
387
405
  description:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@writepanda/mcp",
3
- "version": "1.33.0",
3
+ "version": "1.34.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",