Skip to content
VS Code

KnowBe4 for VS Code

io.github.wyre-ai/knowbe4-mcp

MCP server for KnowBe4 security awareness training — users, groups, training, phishing campaigns.

client:VS Code transport:stdio runtime:oci

Install KnowBe4 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "knowbe4-api-key",
      "description": "KNOWBE4_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "knowbe4-region",
      "description": "KNOWBE4_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "knowbe4-base-url",
      "description": "KNOWBE4_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "knowbe4-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/knowbe4-mcp:v1.1.5"
      ],
      "env": {
        "KNOWBE4_API_KEY": "${input:knowbe4-api-key}",
        "KNOWBE4_REGION": "${input:knowbe4-region}",
        "KNOWBE4_BASE_URL": "${input:knowbe4-base-url}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

KnowBe4 in other clients