Skip to content
VS Code

Authentik MCP Server for VS Code

io.github.samik081/mcp-authentik

Manage Authentik through AI assistants

client:VS Code transport:stdio runtime:npm

Install Authentik MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "authentik-url",
      "description": "AUTHENTIK_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "authentik-token",
      "description": "AUTHENTIK_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-authentik": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@samik081/mcp-authentik"
      ],
      "env": {
        "AUTHENTIK_URL": "${input:authentik-url}",
        "AUTHENTIK_TOKEN": "${input:authentik-token}"
      }
    }
  }
}

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

Authentik MCP Server in other clients