Skip to content
VS Code

xmorf for VS Code

io.github.crawde/xmorf

AI image editing and generation via xmorf API. Edit, generate, and list models.

client:VS Code transport:stdio runtime:npm

Install xmorf in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "xmorf-api-token",
      "description": "XMORF_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "xmorf": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-xmorf"
      ],
      "env": {
        "XMORF_API_TOKEN": "${input:xmorf-api-token}"
      }
    }
  }
}

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

xmorf in other clients