Skip to content
VS Code

fcpxml mcp server for VS Code

io.github.daredev256/fcpxml-mcp-server

Final Cut Pro automation: 13 grouped tools, 88 operations. FCPXML edit, QC, transcript, preview.

client:VS Code transport:stdio runtime:pypi

Install fcpxml mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fcp-projects-dir",
      "description": "FCP_PROJECTS_DIR",
      "password": true
    }
  ],
  "servers": {
    "fcpxml-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fcp-mcp-server"
      ],
      "env": {
        "FCP_PROJECTS_DIR": "${input:fcp-projects-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

fcpxml mcp server in other clients