authentik-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AUTHENTIK_URL | Yes | The URL of your Authentik instance (e.g., https://auth.example.com) | |
| AUTHENTIK_TOKEN | Yes | Your 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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| 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
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
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 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.
With 7 tools, the count is well-scoped for an Authentik administration server, covering core operations without being overwhelming or insufficient.
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.