MCP Server
Active
MIT
Authentik MCP Server MCP Server
io.github.Samik081/mcp-authentik
What is the Authentik MCP Server MCP server?
Manage Authentik through AI assistants
How to install Authentik MCP Server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
AUTHENTIK_URLrequiredURL of the Authentik instance (e.g. https://auth.example.com)
AUTHENTIK_TOKENrequiredsecretAuthentik API token
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-authentik": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-authentik"
],
"env": {
"AUTHENTIK_URL": "<YOUR_AUTHENTIK_URL>",
"AUTHENTIK_TOKEN": "<YOUR_AUTHENTIK_TOKEN>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-authentik": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-authentik"
],
"env": {
"AUTHENTIK_URL": "<YOUR_AUTHENTIK_URL>",
"AUTHENTIK_TOKEN": "<YOUR_AUTHENTIK_TOKEN>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-authentik": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-authentik"
],
"env": {
"AUTHENTIK_URL": "<YOUR_AUTHENTIK_URL>",
"AUTHENTIK_TOKEN": "<YOUR_AUTHENTIK_TOKEN>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-authentik": {
"type": "stdio",
"command": "node",
"args": [
"-y",
"@samik081/mcp-authentik"
],
"env": {
"AUTHENTIK_URL": "<YOUR_AUTHENTIK_URL>",
"AUTHENTIK_TOKEN": "<YOUR_AUTHENTIK_TOKEN>"
}
}
}
}Claude Code
claude mcp add mcp-authentik --env AUTHENTIK_URL=<YOUR_AUTHENTIK_URL> --env AUTHENTIK_TOKEN=<YOUR_AUTHENTIK_TOKEN> -- node -y @samik081/mcp-authentikRelated MCP servers
AdGuard Home MCP Server
Active
Manage AdGuard Home through AI assistants
1
View repository →TypeScript
MIT