Skip to content
VS Code

keen for VS Code

io.github.telcharfromnogrod/keen

AI image upscaling — upscale any image to 2x or 4x resolution with x402 payments

client:VS Code transport:stdio runtime:npm

Install keen in VS Code

.vscode/mcp.json

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

keen in other clients