Manage pods, deployments, services, and configs in your Kubernetes cluster from Claude Code — inspect workloads, debug failures, and apply manifests with AI assistance.
The Kubernetes MCP connects Claude Code to your Kubernetes cluster via the Kubernetes API. Claude can list and inspect workloads, read pod logs, describe failing resources, apply manifests, and help you troubleshoot cluster issues — all with the context of your application code.
mcpizy install kubernetes
The MCP uses your local kubeconfig file (~/.kube/config) by default. Specify a context with the KUBECONFIG_CONTEXT environment variable to target a specific cluster.
A pod is in CrashLoopBackOff. Ask Claude to debug it:
// Claude will:
// 1. kubectl describe pod — check events for OOM or image pull errors
// 2. kubectl logs --previous — read the last crash's stderr
// 3. Cross-reference with the deployment manifest
// 4. Suggest resource limit adjustments or config fixes