-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
156 lines (156 loc) · 5.3 KB
/
server.json
File metadata and controls
156 lines (156 loc) · 5.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.mikhae1/kubeview",
"description": "Read-only Model Context Protocol MCP server enabling code-driven AI analysis of Kubernetes clusters.",
"repository": {
"url": "https://github.com/mikhae1/kubeview-mcp",
"source": "github"
},
"websiteUrl": "https://github.com/mikhae1/kubeview-mcp",
"version": "1.8.2",
"packages": [
{
"registryType": "npm",
"identifier": "kubeview-mcp",
"version": "1.8.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "KUBECONFIG",
"description": "Path to kubeconfig file; defaults to ~/.kube/config if unset.",
"format": "filepath",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_TRANSPORT",
"description": "Transport mode: 'stdio' (default) or 'http'. The published package metadata still targets stdio by default.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_MODE",
"description": "Server mode: 'all' (default), 'code', or 'tools'. Controls which features are enabled.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_LOG_LEVEL",
"description": "Logging level: 'error', 'warn', 'info' (default), or 'debug'.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_KUBE_CONTEXT",
"description": "Kubernetes context name to use. If unset, uses the current context from kubeconfig.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_K8S_SKIP_TLS_VERIFY",
"description": "Skip TLS certificate verification for Kubernetes API (use 'true' or '1'). Not recommended for production.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_HIDE_SENSITIVE",
"description": "Enable global sensitive data masking. Set to 'true' or '1' to mask sensitive values in responses.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_TIMEOUT",
"description": "Default timeout in milliseconds for operations. If unset, uses plugin-specific defaults.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_HTTP_HOST",
"description": "HTTP bind host when MCP_TRANSPORT=http. Defaults to 127.0.0.1.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_HTTP_PORT",
"description": "HTTP port when MCP_TRANSPORT=http. Defaults to 3000.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_HTTP_PATH",
"description": "HTTP endpoint path when MCP_TRANSPORT=http. Defaults to /mcp.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_HTTP_STATELESS",
"description": "Disable session IDs in HTTP mode. Set to 'true' or '1' for stateless request handling.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_HTTP_JSON_RESPONSE",
"description": "Prefer JSON responses over SSE in HTTP mode. Set to 'true' or '1' to enable.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_ALLOWED_HOSTS",
"description": "Comma-separated Host allowlist for HTTP mode. Required when binding to 0.0.0.0 or ::.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_ALLOWED_ORIGINS",
"description": "Comma-separated Origin allowlist for HTTP mode.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_DISABLE_KUBERNETES_PLUGIN",
"description": "Disable Kubernetes plugin. Set to 'true' or '1' to disable.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_DISABLE_HELM_PLUGIN",
"description": "Disable Helm plugin. Set to 'true' or '1' to disable.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_DISABLE_ARGO_PLUGIN",
"description": "Disable Argo Workflows plugin. Set to 'true' or '1' to disable.",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_DISABLE_ARGOCD_PLUGIN",
"description": "Disable Argo CD plugin. Set to 'true' or '1' to disable.",
"format": "string",
"isRequired": false,
"isSecret": false
}
]
}
]
}