@samik081/mcp-authentik 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
MCP server for [Authentik](https://goauthentik.io/) identity management. Manage users, groups, applications, flows, policies, providers, and more through natural language in Cursor, Claude Code, and Claude Desktop.
|
|
8
8
|
|
|
9
|
+
> **Disclaimer:** Most of this code has been AI-generated and has not been fully tested yet. I created this project for my own needs and plan to continue improving its quality, but it may be buggy in the early stages. If you find a bug, feel free to [open an issue](https://github.com/Samik081/mcp-authentik/issues) -- I'll try to work on it in my spare time.
|
|
10
|
+
|
|
9
11
|
## Features
|
|
10
12
|
|
|
11
13
|
- **245 tools** across **20 API categories** covering the complete Authentik API
|
|
@@ -21,7 +23,7 @@ Run the server directly with npx:
|
|
|
21
23
|
```bash
|
|
22
24
|
AUTHENTIK_URL="https://auth.example.com" \
|
|
23
25
|
AUTHENTIK_TOKEN="your-api-token" \
|
|
24
|
-
npx @samik081/mcp-authentik
|
|
26
|
+
npx -y @samik081/mcp-authentik
|
|
25
27
|
```
|
|
26
28
|
|
|
27
29
|
The server validates your Authentik connection on startup and fails immediately with a clear error if credentials are missing or invalid.
|
|
@@ -34,7 +36,7 @@ The server validates your Authentik connection on startup and fails immediately
|
|
|
34
36
|
claude mcp add --transport stdio authentik \
|
|
35
37
|
--env AUTHENTIK_URL=https://auth.example.com \
|
|
36
38
|
--env AUTHENTIK_TOKEN=your-api-token \
|
|
37
|
-
-- npx @samik081/mcp-authentik
|
|
39
|
+
-- npx -y @samik081/mcp-authentik
|
|
38
40
|
```
|
|
39
41
|
|
|
40
42
|
**JSON config** (works with Claude Code `.mcp.json`, Claude Desktop `claude_desktop_config.json`, Cursor `.cursor/mcp.json`):
|
|
@@ -44,7 +46,7 @@ claude mcp add --transport stdio authentik \
|
|
|
44
46
|
"mcpServers": {
|
|
45
47
|
"authentik": {
|
|
46
48
|
"command": "npx",
|
|
47
|
-
"args": ["@samik081/mcp-authentik"],
|
|
49
|
+
"args": ["-y", "@samik081/mcp-authentik"],
|
|
48
50
|
"env": {
|
|
49
51
|
"AUTHENTIK_URL": "https://auth.example.com",
|
|
50
52
|
"AUTHENTIK_TOKEN": "your-api-token"
|