Gives Claude read-only access to your Kubernetes cluster through 33 tools covering pods, deployments, services, ConfigMaps, secrets, and node metrics. Ships with three permission modes: readonly (default) blocks all mutations, readwrite adds scaling and restarts, and dangerous enables deletes and arbitrary YAML applies. Each tool checks permissions at runtime and returns explicit denials rather than failing silently. Uses your local kubeconfig and runs as a stdio transport. Useful when you want AI to diagnose cluster issues or explain resource states without risking accidental deletions in production. Available as MCPB bundles for direct installation in Claude Desktop and Cursor.
Safe, read-only-by-default Kubernetes access for AI agents.
A Kubernetes MCP server that lets AI assistants inspect your cluster safely — without giving them unrestricted kubectl.
readonly, readwrite, or dangerous before the assistant starts.io.github.kaneg/k8s-mcp-go for MCP Registry consumers and packaged clients.io.github.kaneg/k8s-mcp-go.server.json.Most AI agents can use Kubernetes tools. The real problem is how to stop them from changing the wrong thing.
Giving an AI raw kubectl access is risky. Even a capable model can:
k8s-mcp-go gives AI agents a guardrailed interface to Kubernetes instead of unrestricted shell access.
It is built for the real-world question:
How can I let AI help with Kubernetes, without letting it break my cluster?
You choose the boundary up front:
| What you want | Mode |
|---|---|
| "Let AI inspect and diagnose, but change nothing" | readonly |
| "Allow safe operational actions like scale and restart" | readwrite |
| "Give it full cluster power" | dangerous |
readonly (default)For diagnosis, inspection, and safe exploration.
AI can do things like:
It cannot modify workloads or delete resources.
readwriteFor controlled operational workflows.
AI can do things like:
It still cannot perform the most destructive operations.
dangerousFull access.
Use this only when you explicitly want AI to be able to:
If you are unsure, use readonly.
Download the .mcpb bundle for your platform from Releases. MCPB-compatible clients (Claude Desktop, Cursor, etc.) can install it directly — no Docker, no Go, no manual setup.
| OS | Arch | File |
|---|---|---|
| Linux | x86_64 | k8s-mcp-go_*_linux_amd64.mcpb |
| Linux | ARM64 | k8s-mcp-go_*_linux_arm64.mcpb |
| macOS | Intel | k8s-mcp-go_*_darwin_amd64.mcpb |
| macOS | Apple Silicon | k8s-mcp-go_*_darwin_arm64.mcpb |
| Windows | x86_64 | k8s-mcp-go_*_windows_amd64.mcpb |
| Windows | ARM64 | k8s-mcp-go_*_windows_arm64.mcpb |
Grab the binary archive from Releases and extract it:
# Example: Linux x86_64
tar xzf k8s-mcp-go_*_linux_amd64.tar.gz
chmod +x k8s-mcp-go
sudo mv k8s-mcp-go /usr/local/bin/
Then add it to your MCP client.
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"k8s": {
"command": "k8s-mcp-go",
"args": ["-mode=readonly"]
}
}
}
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"k8s": {
"command": "k8s-mcp-go",
"args": ["-mode=readonly"]
}
}
}
Restart your client and start asking questions about your cluster.
Once installed, ask your AI assistant things like:
In readonly mode, the assistant can investigate but cannot change the cluster.
Because the problem is not whether AI can talk to Kubernetes. The problem is whether it can do so safely.
kubectl is powerful, but it does not give you a product-level permission mode for AI behavior.
With k8s-mcp-go, you decide whether the assistant can:
The permission boundary is the product.
Tools are grouped by permission level.
Names start with an action verb such as get, list, or delete; top_nodes
and top_pods retain Kubernetes' established kubectl top terminology.
| Tool | Description |
|---|---|
get_server_info | Show server version, mode, Kubernetes config source, and runtime details |
resolve_workload | Resolve an app/workload name to matching resources and suggested next tools |
list_pods | List pods; supports all_namespaces=true |
get_pod | Get pod details |
get_pod_logs | Get pod logs |
list_deployments | List deployments; supports all_namespaces=true |
get_deployment | Get deployment details |
list_statefulsets | List StatefulSets; supports all_namespaces=true |
get_statefulset | Get StatefulSet details |
list_services | List services; supports all_namespaces=true |
get_service | Get service details |
list_configmaps | List ConfigMaps; supports all_namespaces=true |
get_configmap | Get ConfigMap data |
list_secrets | List Secrets (keys only); supports all_namespaces=true |
get_secret | Get Secret metadata and keys |
list_pvc | List PersistentVolumeClaims; supports all_namespaces=true |
list_ingress | List Ingress resources; supports all_namespaces=true |
list_jobs | List Jobs; supports all_namespaces=true |
top_nodes | Current node CPU and memory usage |
top_pods | Current pod CPU and memory usage |
list_nodes | List cluster nodes |
list_namespaces | List namespaces |
get_cluster_overview | Cluster health summary |
list_events | List events |
| Tool | Description |
|---|---|
scale_deployment | Scale deployment replicas |
restart_deployment | Rolling restart a deployment |
restart_statefulset | Rolling restart a statefulset |
set_image | Update container image |
get_rollout_status | Check rollout progress |
create_namespace | Create a new namespace |
patch_deployment | Apply strategic merge patch |
| Tool | Description |
|---|---|
delete_pod | Delete a pod |
delete_deployment | Delete a deployment |
delete_statefulset | Delete a StatefulSet and its pods |
delete_daemonset | Delete a DaemonSet and its pods |
delete_resource | Delete a resource without a dedicated delete tool |
delete_namespace | Delete a namespace and all resources |
apply_yaml | Apply arbitrary YAML manifest |
Prefer the dedicated delete tools above when one exists. Use delete_resource
as the fallback for other kinds. It resolves namespaced versus cluster-scoped
resources through Kubernetes discovery.
{"api_version":"v1","kind":"ServiceAccount","namespace":"apps","name":"builder"}
{"api_version":"rbac.authorization.k8s.io/v1","kind":"ClusterRole","name":"auditor"}
Configuration is selected in this order:
KUBECONFIG, when set.~/.kube/config when running outside a cluster.An explicit KUBECONFIG is authoritative. If it cannot be loaded, the server
returns an error instead of silently switching to the Pod's ServiceAccount.
In-cluster configuration uses Kubernetes' mounted token file so projected
ServiceAccount token rotation continues to work without copying tokens into a
kubeconfig.
| Variable | Description |
|---|---|
KUBECONFIG | Explicit kubeconfig path. When unset, use in-cluster configuration or fall back to ~/.kube/config. |
git clone https://github.com/kaneg/k8s-mcp-go.git
cd k8s-mcp-go
go build -o k8s-mcp-go .
MIT
silenceper/mcp-k8s
azure/containerization-assist
io.github.evozim/aws-builder
reza-gholizade/k8s-mcp-server
flux159/mcp-server-kubernetes