-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathserver.json
More file actions
78 lines (78 loc) · 2.32 KB
/
server.json
File metadata and controls
78 lines (78 loc) · 2.32 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
75
76
77
78
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.Flux159/mcp-server-kubernetes",
"description": "MCP server for interacting with Kubernetes clusters via kubectl",
"status": "active",
"repository": {
"url": "https://github.com/Flux159/mcp-server-kubernetes",
"source": "github"
},
"version": "2.9.4",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "mcp-server-kubernetes",
"version": "2.9.4",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"description": "Non destructive mode.",
"is_required": false,
"format": "string",
"name": "ALLOW_ONLY_NON_DESTRUCTIVE_TOOLS"
},
{
"description": "Read only mode.",
"is_required": false,
"format": "string",
"name": "ALLOW_ONLY_READONLY_TOOLS"
},
{
"description": "Comma delimited list of allowed tools.",
"is_required": false,
"format": "string",
"name": "ALLOWED_TOOLS"
},
{
"description": "Set to false to disable automatic secrets masking in responses.",
"is_required": false,
"format": "string",
"name": "MASK_SECRETS"
},
{
"description": "Enable Streamable HTTP Transport.",
"is_required": false,
"format": "string",
"name": "ENABLE_UNSAFE_STREAMABLE_HTTP_TRANSPORT"
},
{
"description": "Enable SSE Transport.",
"is_required": false,
"format": "string",
"name": "ENABLE_UNSAFE_SSE_TRANSPORT"
},
{
"description": "Specify kubeconfig as a yaml string.",
"is_required": false,
"format": "string",
"name": "KUBECONFIG_YAML"
},
{
"description": "Specify kubeconfig as a json string.",
"is_required": false,
"format": "string",
"name": "KUBECONFIG_JSON"
},
{
"description": "Specify kubeconfig file path. Defaults to ~/.kube/config",
"is_required": false,
"format": "string",
"name": "KUBECONFIG_PATH"
}
]
}
]
}