Skip to content
VS Code

mcp for VS Code

io.github.runware/mcp

Access the full Runware API as MCP tools: image, video, audio, 3D, and text.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "runware-api-key",
      "description": "RUNWARE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@runware/mcp"
      ],
      "env": {
        "RUNWARE_API_KEY": "${input:runware-api-key}"
      }
    }
  }
}

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

mcp in other clients