Skip to content
VS Code

delega for VS Code

io.github.delega-dev/delega

Delega MCP client. Public hosted access retired July 28, 2026; existing owner credentials only.

client:VS Code transport:stdio runtime:npm

Install delega in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "delega-api-key",
      "description": "DELEGA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "delega-api-url",
      "description": "DELEGA_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "delega-cf-access-client-id",
      "description": "DELEGA_CF_ACCESS_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "delega-cf-access-client-secret",
      "description": "DELEGA_CF_ACCESS_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "delega": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@delega-dev/mcp"
      ],
      "env": {
        "DELEGA_API_KEY": "${input:delega-api-key}",
        "DELEGA_API_URL": "${input:delega-api-url}",
        "DELEGA_CF_ACCESS_CLIENT_ID": "${input:delega-cf-access-client-id}",
        "DELEGA_CF_ACCESS_CLIENT_SECRET": "${input:delega-cf-access-client-secret}"
      }
    }
  }
}

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

delega in other clients