-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.53 KB
/
server.json
File metadata and controls
57 lines (57 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Samik081/mcp-authentik",
"version": "0.7.0",
"title": "Authentik MCP Server",
"description": "Manage Authentik through AI assistants",
"license": "MIT",
"repository": {
"url": "https://github.com/Samik081/mcp-authentik",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@samik081/mcp-authentik",
"version": "0.7.0",
"runtimeHint": "node",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "AUTHENTIK_URL",
"description": "URL of the Authentik instance (e.g. https://auth.example.com)",
"isRequired": true
},
{
"name": "AUTHENTIK_TOKEN",
"description": "Authentik API token",
"isRequired": true,
"isSecret": true
}
]
},
{
"registryType": "oci",
"identifier": "ghcr.io/samik081/mcp-authentik:0.7.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "AUTHENTIK_URL",
"description": "URL of the Authentik instance (e.g. https://auth.example.com)",
"isRequired": true
},
{
"name": "AUTHENTIK_TOKEN",
"description": "Authentik API token",
"isRequired": true,
"isSecret": true
}
]
}
]
}