forked from vfarcic/dot-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
74 lines (74 loc) · 2.21 KB
/
server.json
File metadata and controls
74 lines (74 loc) · 2.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.github.vfarcic/dot-ai",
"description": "AI-powered development platform for Kubernetes deployments and intelligent automation",
"repository": {
"url": "https://github.com/vfarcic/dot-ai",
"source": "github"
},
"version": "0.139.0",
"packages": [
{
"registryType": "npm",
"identifier": "@vfarcic/dot-ai",
"version": "0.139.0",
"transport": {
"type": "stdio"
}
}
],
"environmentVariables": [
{
"description": "Anthropic API key for Claude AI integration (required for deployments)",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "ANTHROPIC_API_KEY"
},
{
"description": "OpenAI API key for embeddings (patterns, policies, capabilities)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "OPENAI_API_KEY"
},
{
"description": "Qdrant Vector DB URL for patterns, policies, and capabilities storage",
"isRequired": false,
"format": "string",
"name": "QDRANT_URL",
"default": "http://localhost:6333"
},
{
"description": "Qdrant API key for authentication",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "QDRANT_API_KEY"
},
{
"description": "Path to kubeconfig file for Kubernetes access",
"isRequired": false,
"format": "string",
"name": "KUBECONFIG"
},
{
"description": "Session storage directory for workflow persistence",
"isRequired": false,
"format": "string",
"name": "DOT_AI_SESSION_DIR"
},
{
"description": "Enable debug logging",
"isRequired": false,
"format": "string",
"name": "DEBUG_DOT_AI"
},
{
"description": "Documentation file pattern for discovery",
"isRequired": false,
"format": "string",
"name": "DOT_AI_DOC_PATTERN"
}
]
}