Skip to main content
Glama
nikitatsym

authentik-mcp

by nikitatsym

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
AUTHENTIK_URLYesThe URL of your Authentik instance (e.g., https://auth.example.com)
AUTHENTIK_TOKENYesYour Authentik API token

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
authentik_versionA

Get the Authentik MCP server version and service status.

authentik_adminB

Admin-only Authentik operations: settings, system, version, files, admin authenticator devices.

Call with operation="help" to list all available admin operations. Otherwise pass the operation name and a JSON object with parameters.

Example: authentik_admin(operation="GetSystemInfo")

authentik_deleteA

Delete Authentik resources (destructive, irreversible).

Call with operation="help" to list all available delete operations. Otherwise pass the operation name and a JSON object with parameters.

Example: authentik_delete(operation="DeleteUser", params={"id": 1})

authentik_flows_readA

Query Authentik auth pipeline config: flows, stages, policies, sources, events (safe, read-only).

Call with operation="help" to list all available operations. Otherwise pass the operation name and a JSON object with parameters.

Example: authentik_flows_read(operation="ListFlows")

authentik_flows_writeA

Create or update Authentik auth pipeline config: flows, stages, policies, sources (non-destructive).

Call with operation="help" to list all available operations. Otherwise pass the operation name and a JSON object with parameters.

Example: authentik_flows_write(operation="CreateFlow", params={"name": "my-flow", "slug": "my-flow", "designation": "authorization"})

authentik_readA

Query Authentik data (safe, read-only). Policy bindings (app/flow access gates) are in authentik_flows_read.

Call with operation="help" to list all available read operations. Otherwise pass the operation name and a JSON object with parameters.

Example: authentik_read(operation="ListUsers", params={"search": "admin"})

authentik_writeA

Create or update Authentik resources (non-destructive). Application/flow access gating (policy bindings) is in authentik_flows_write.

Call with operation="help" to list all available write operations. Otherwise pass the operation name and a JSON object with parameters.

Example: authentik_write(operation="CreateUser", params={"username": "alice", "name": "Alice"})

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation4/5

Tools are mostly distinct but there is potential confusion between authentik_write and authentik_flows_write, and between authentik_read and authentik_flows_read, as the domain-specific tools overlap with general ones.

Naming Consistency4/5

Naming uses a consistent authentik_ prefix and snake_case, but the pattern varies: some tools include a domain (e.g., authentik_flows_write) while others do not (e.g., authentik_write), leading to minor inconsistency.

Tool Count5/5

With 7 tools, the count is well-scoped for an Authentik administration server, covering core operations without being overwhelming or insufficient.

Completeness4/5

The tool set covers CRUD operations (create/update via write, read via read and flows_read, delete via delete) and admin actions, but lacks a distinct update-only tool; the write tool handles both create and update, which is acceptable but not ideal.

Maintenance

ActivityActive
ResponsivenessNo issues