Skip to content
VS Code

qwen image mcp for VS Code

io.github.runapi-builder/qwen-image-mcp

RunAPI MCP server for Qwen Image: create tasks, poll status, check pricing.

client:VS Code transport:stdio runtime:npm

Install qwen image mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "runapi-api-key",
      "description": "RUNAPI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "qwen-image-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@runapi.ai/qwen-image-mcp"
      ],
      "env": {
        "RUNAPI_API_KEY": "${input:runapi-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

qwen image mcp in other clients