Skip to content
VS Code

qodercli mcp for VS Code

io.github.cantbeblank96/qodercli-mcp

MCP server mode for Qoder CLI — delegate coding tasks to local Qoder agents from any MCP client.

client:VS Code transport:stdio runtime:npm

Install qodercli mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "qodercli-path",
      "description": "QODERCLI_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qodercli-default-permission-mode",
      "description": "QODERCLI_DEFAULT_PERMISSION_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "http-proxy",
      "description": "HTTP_PROXY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "https-proxy",
      "description": "HTTPS_PROXY",
      "password": true
    }
  ],
  "servers": {
    "qodercli-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "qodercli-mcp"
      ],
      "env": {
        "QODERCLI_PATH": "${input:qodercli-path}",
        "QODERCLI_DEFAULT_PERMISSION_MODE": "${input:qodercli-default-permission-mode}",
        "HTTP_PROXY": "${input:http-proxy}",
        "HTTPS_PROXY": "${input:https-proxy}"
      }
    }
  }
}

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

qodercli mcp in other clients