Edit videos with Cursor

Cursor's agent speaks MCP natively. Drop one config block into Cursor's MCP file, and you can edit videos in PandaStudio from the same window you ship code from.

1

Install PandaStudio and Cursor

PandaStudio from writepanda.ai. Cursor from cursor.com. Launch PandaStudio once so it writes its local credentials file — that's all the setup PandaStudio needs.

2

Put pandastudio-mcp on your PATH (macOS only)

PandaStudio ships its MCP server inside the installed app. On macOS, link it onto /usr/local/bin once:

bash
sudo /Applications/PandaStudio.app/Contents/Resources/cli/install-cli-symlink-mac.sh

Windows installer (NSIS) adds the launcher directory to %PATH% automatically — skip this step.

3

Add the MCP server to Cursor

Cursor reads MCP servers from one of two files:

  • Global: ~/.cursor/mcp.json (recommended — available in every workspace)
  • Project-only: .cursor/mcp.json at the workspace root

Create the file if it doesn't exist, then paste this in:

~/.cursor/mcp.json
{
  "mcpServers": {
    "pandastudio": {
      "command": "pandastudio-mcp"
    }
  }
}

No token field, no env var, no Node runtime. The PandaStudio MCP server runs under the Electron-bundled Node inside the app and auto-discovers credentials from ~/.config/pandastudio/ (loopback only, never exposed to the internet).

4

Install the PandaStudio Skill

The Skill teaches Claude (and any other model you use in Cursor) PandaStudio's full command surface so it can chain edits without you explaining the API. Run once in your terminal:

bash
npx skills add kamskans/pandastudio-skills

The installer detects Cursor and copies the Skill to .cursor/skills/pandastudio/ globally. It also installs for any other agents you have set up — one command covers all of them.

5

Verify Cursor sees PandaStudio

Open Cursor settings → Features → MCP. You should see pandastudio listed with a green dot. If it's red, click View logs — most often a JSON typo or PandaStudio hasn't been launched yet.

6

Use it from the agent panel

Open the Composer (⌘L on macOS / Ctrl L on Windows), pick Agent mode, and try:

  • "Open my latest recording, transcribe it, remove filler words and silences, then export an MP4."
  • "Create a new 9:16 project, import the file at ~/Recordings/launch.mov, add bold captions, and preview it."
  • "List all my projects from this week and tell me which one is longest."

Troubleshooting

  • Server shows red — open the MCP logs panel. Most failures are JSON typos, a missing pandastudio-mcp on PATH (re-run step 2), or PandaStudio not having been launched yet (no credentials file for the MCP server to read).
  • No PandaStudio desktop install? — you can fall back to the npm-published server, which runs under your system Node: replace the command block with "command": "npx", "args": ["-y", "@writepanda/mcp"]. Requires Node 18+ on PATH; slower cold start.
  • Tools work but commands fail with "License gate engaged" — purchase a license at /pricing or use your remaining trial exports.