Skip to content

Commit 749e8d4

Browse files
authored
Add Kubernetes MCP server (#156)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 1b6f61b commit 749e8d4

1 file changed

Lines changed: 69 additions & 0 deletions

File tree

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "flux159.kubernetes-mcp-npx",
4+
"name": "Kubernetes (npx)",
5+
"alias": "kubernetes",
6+
"description": "Manage Kubernetes clusters through kubectl and Helm: list and inspect resources, view logs, scale workloads, port-forward, and run node operations. Connects to whatever cluster your current kube context points to.",
7+
"logo": "https://avatars.githubusercontent.com/u/904070?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"kubernetes",
15+
"k8s",
16+
"kubectl",
17+
"helm",
18+
"devops",
19+
"cloud"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"mcp-server-kubernetes"
27+
],
28+
"env": {
29+
"ALLOW_ONLY_NON_DESTRUCTIVE_TOOLS": "${input:ALLOW_ONLY_NON_DESTRUCTIVE_TOOLS}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "ALLOW_ONLY_NON_DESTRUCTIVE_TOOLS",
35+
"label": "Read-only (non-destructive) mode",
36+
"description": "When enabled, destructive tools are disabled (kubectl_delete, uninstall_helm_chart, cleanup, cleanup_pods, node_management, kubectl_generic). Read-only and create/update operations remain available.",
37+
"type": "boolean",
38+
"required": false,
39+
"secret": false,
40+
"default": "false"
41+
}
42+
]
43+
}
44+
},
45+
"auth": {
46+
"type": "none",
47+
"instructions": "Uses your local kubeconfig / current kube context."
48+
},
49+
"contributor": {
50+
"name": "Flux159",
51+
"github": "Flux159",
52+
"url": "https://github.com/Flux159/mcp-server-kubernetes"
53+
},
54+
"links": {
55+
"repository": "https://github.com/Flux159/mcp-server-kubernetes",
56+
"homepage": "https://github.com/Flux159/mcp-server-kubernetes#readme",
57+
"documentation": "https://github.com/Flux159/mcp-server-kubernetes/blob/main/README.md"
58+
},
59+
"platforms": [
60+
"all"
61+
],
62+
"capabilities": {
63+
"tools": true,
64+
"resources": true,
65+
"prompts": true,
66+
"read_only_mode": true
67+
},
68+
"changelog_url": "https://github.com/Flux159/mcp-server-kubernetes/releases"
69+
}

0 commit comments

Comments
 (0)