Edit videos with Google Antigravity

Antigravity is Google's agent-first IDE, and it speaks MCP natively. It isn't in PandaStudio's one-click Connect list yet, so here's the two-minute manual setup: turn on local automation, paste one config block, and drive the editor from Antigravity's agent.

Fastest path: open PandaStudio and go to Settings → Local automation → Connect agents for one-click setup. The steps below are the manual route if you prefer to wire it up yourself.
1

Install PandaStudio and Antigravity

PandaStudio from writepanda.ai. Antigravity from antigravity.google. Launch PandaStudio once so it writes its local credentials file — that's all the setup PandaStudio needs.

2

Turn on local automation in PandaStudio

PandaStudio's MCP server only runs while the local automation server is on. For the one-click agents (Claude, Codex) the app flips this for you — but Antigravity connects manually, so switch it on yourself:

  • Open Settings → Automation
  • Toggle Allow local automation on

This is the single most common reason Antigravity shows no PandaStudio tools: if local automation is off, there's no server for the MCP config to reach. Leave it on and the server starts automatically whenever PandaStudio is running.

3

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 so Antigravity can launch it by name:

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.

4

Add the MCP server to Antigravity

Open Antigravity's agent panel and go to its MCP settings — in the current build that's the Agent panel → MCP servers (the small tools/plug icon) → Manage → Edit raw config. Antigravity reads the same mcpServers JSON schema every other MCP client uses. Paste this in:

Antigravity MCP config (mcp_config.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). If you edit the file directly rather than through the UI, it lives under your Antigravity user config directory as mcp_config.json.

5

Install the PandaStudio Skill

The Skill teaches the model behind Antigravity 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

It installs the Skill for every agent it detects on your machine — one command covers Antigravity alongside anything else you have set up.

6

Verify Antigravity sees PandaStudio

Back in the MCP servers panel, pandastudio should now appear with its tools listed and a healthy/green status. If it's red or empty, use Refresh and check the server logs — it's almost always one of three things: local automation still off (step 2), a JSON typo (step 4), or PandaStudio not launched yet (no credentials file to read).

7

Use it from the agent

Open Antigravity's agent, make sure it's in a tool-using / 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

  • No PandaStudio tools show up — the usual cause is local automation being off. Open PandaStudio → Settings → Automation and confirm Allow local automation is on, then refresh the MCP panel in Antigravity.
  • Server shows red / failed to start — most failures are JSON typos, a missing pandastudio-mcp on PATH (re-run step 3), or PandaStudio not having been launched yet.
  • 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.