Skip to content
VS Code

Runway ML for VS Code

io.github.mindstone/mcp-server-runway

Runway ML MCP server: AI video, image, audio, voice generation, and task management

client:VS Code transport:stdio runtime:npm

Install Runway ML in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "runwayml-api-secret",
      "description": "RUNWAYML_API_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "runway-request-timeout-ms",
      "description": "RUNWAY_REQUEST_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "runway-upload-timeout-ms",
      "description": "RUNWAY_UPLOAD_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "runway-allowed-root",
      "description": "RUNWAY_ALLOWED_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "runway-download-root",
      "description": "RUNWAY_DOWNLOAD_ROOT",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-runway": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-runway"
      ],
      "env": {
        "RUNWAYML_API_SECRET": "${input:runwayml-api-secret}",
        "RUNWAY_REQUEST_TIMEOUT_MS": "${input:runway-request-timeout-ms}",
        "RUNWAY_UPLOAD_TIMEOUT_MS": "${input:runway-upload-timeout-ms}",
        "RUNWAY_ALLOWED_ROOT": "${input:runway-allowed-root}",
        "RUNWAY_DOWNLOAD_ROOT": "${input:runway-download-root}"
      }
    }
  }
}

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

Runway ML in other clients