For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.
Install the kmcp controller
Deploy the kmcp controller in a Kubernetes cluster.
The kmcp controller manages the lifecycle of MCP servers that are defined in an MCPServer custom resource.
Prerequisites
- Kind for creating and running a local Kubernetes cluster
- Docker for running local kind clusters
- Helm for installing the kmcp controller chart
Install the controller
Create a kind cluster.
Tip: If you already have a Kubernetes cluster that you want to use, switch to the kubeconfig context for that cluster by using the
kubectl config use-context [CONTEXT-NAME]command.kind create clusterInstall the kmcp CRDs.
helm install kmcp-crds oci://ghcr.io/kagent-dev/kmcp/helm/kmcp-crds \ --namespace kmcp-system \ --create-namespaceInstall the following kmcp controller components in your cluster.
- The MCPServer Custom Resource Definition to define your MCP server.
- The ClusterRole and ClusterRoleBinding to control RBAC permissions for the kmcp controller.
- The kmcp controller deployment that automatically manages the lifecycle of MCPServer resources.
kmcp installExample output:
🚀 Deploying KMCP controller to cluster... No version specified, using latest: v0.3.0 Release "kmcp" does not exist. Installing it now. NAME: kmcp LAST DEPLOYED: Wed Jul 30 18:41:01 2025 NAMESPACE: kmcp-system STATUS: deployed REVISION: 1 TEST SUITE: None ✅ KMCP controller deployed successfully 💡 Check controller status with: kubectl get pods -n kmcp-system 💡 View controller logs with: kubectl logs -l app.kubernetes.io/name=kmcp -n kmcp-systemVerify that the kmcp controller manager is up and running.
kubectl get pods -n kmcp-systemExample output:
NAME READY STATUS RESTARTS AGE kmcp-controller-manager-66c8764c66-8h5sl 1/1 Running 0 27hOptional: Look at the logs of the kmcp controller manager.
kubectl logs -l app.kubernetes.io/name=kmcp -n kmcp-system
Next
Deploy your MCP servers to your cluster and manage their lifecycle.