forked from containers/kubernetes-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathserver.json
More file actions
66 lines (66 loc) · 1.91 KB
/
server.json
File metadata and controls
66 lines (66 loc) · 1.91 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.containers/kubernetes-mcp-server",
"description": "A Model Context Protocol (MCP) server for Kubernetes and OpenShift",
"repository": {
"url": "https://github.com/containers/kubernetes-mcp-server",
"source": "github"
},
"version": "0.0.0",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "kubernetes-mcp-server",
"version": "0.0.0",
"transport": {
"type": "stdio"
}
},
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "kubernetes-mcp-server",
"version": "0.0.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
}
},
{
"registryType": "oci",
"identifier": "ghcr.io/containers/kubernetes-mcp-server:0.0.0",
"runtimeHint": "docker",
"runtimeArguments": [
{
"type": "named",
"name": "-v",
"description": "Volume mount for kubeconfig access (host_path:container_path)",
"format": "string",
"isRequired": true,
"placeholder": "~/.kube/config:/kubeconfig:ro"
},
{
"type": "named",
"name": "-e",
"description": "Environment variable to set the kubeconfig path inside the container",
"format": "string",
"isRequired": true,
"default": "KUBECONFIG=/kubeconfig"
},
{
"type": "named",
"name": "-p",
"description": "Port mapping for MCP server HTTP endpoint (host_port:container_port)",
"format": "string",
"isRequired": true,
"default": "8080:8080"
}
],
"transport": {
"type": "streamable-http",
"url": "http://localhost:8080/mcp"
}
}
]
}