A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
A Kubernetes operator that provides a declarative API to deploy, manage, and safely roll out MCP Servers, handling their
A Kubernetes operator that provides a declarative API to deploy, manage, and safely roll out MCP Servers, handling their full lifecycle with production-grade automation and ecosystem integrations.
Note: This project is currently in alpha (
v1alpha1). APIs and behavior may change in future releases.
Install the operator and CRDs directly from the latest release:
kubectl apply -f https://github.com/kubernetes-sigs/mcp-lifecycle-operator/releases/latest/download/install.yaml
This installs the CRDs, the controller Deployment, and all necessary RBAC resources in the mcp-lifecycle-operator-system namespace.
Clone the repository and run the controller on your local machine:
make install # Install the CRDs
make run # Run the controller locally
Keep this terminal open. The controller logs will appear here.
Build and deploy the controller as a Deployment in your cluster:
# Build and push the container image for multiple platforms
make docker-buildx IMG=<your-registry>/mcp-lifecycle-operator:latest
# Deploy to cluster
make deploy IMG=<your-registry>/mcp-lifecycle-operator:latest
Note: docker-buildx builds for multiple architectures (amd64, arm64, s390x, ppc64le) and pushes automatically.
In a new terminal, create a test MCPServer resource:
kubectl apply -f - <<EOF
apiVersion: mcp.x-k8s.io/v1alpha1
kind: MCPServer
metadata:
name: test-server
namespace: default
spec:
source:
type: ContainerImage
containerImage:
ref: quay.io/containers/kubernetes_mcp_server:latest
config:
port: 8080
EOF
Check that the operator created the resources:
# View the MCPServer status
kubectl get mcpservers
kubectl get mcpserver test-server -o yaml
# Verify the Deployment was created
kubectl get deployment test-server
# Verify the Service was created
kubectl get service test-server
# Check the pod is running
kubectl get pods -l mcp-server=test-server
Expected output from kubectl get mcpservers:
NAME READY ACCEPTED IMAGE PORT ADDRESS AGE
test-server True True quay.io/containers/kubernetes_mcp_server:latest 8080 http://test-server.default.svc.cluster.local:8080/mcp 1m
The ADDRESS column shows the cluster-internal URL that can be used by other workloads to connect to the MCP server.
The status includes conditions and the service address for easy discovery:
status:
deploymentName: test-server
serviceName: test-server
address:
url: http://test-server.default.svc.cluster.local:8080/mcp
conditions:
- type: Accepted
status: "True"
reason: Valid
- type: Ready
status: "True"
reason: Available
Port-forward to test connectivity:
kubectl port-forward service/test-server 8080:8080
Then in another terminal:
# Test the health endpoint
curl http://localhost:8080/healthz
# Test the MCP endpoint
curl http://localhost:8080/mcp
You should see a response from the MCP server.
To remove the CRDs and operator:
# If you installed from the release
kubectl delete -f https://github.com/kubernetes-sigs/mcp-lifecycle-operator/releases/latest/download/install.yaml
# If you deployed from source
make undeploy
make uninstall
For more examples, see the examples/ directory:
# Generate code and manifests
make manifests generate
# Build binary
make build
# Run unit tests
make test
# Run e2e tests (requires Kind)
make deploy-test-e2e # creates Kind cluster, builds image, deploys operator
make test-e2e # runs e2e tests against the cluster
make cleanup-test-e2e # tears down the Kind cluster
This project is part of Kubernetes SIG Apps.
Learn how to engage with the Kubernetes community on the community page.
You can reach the maintainers of this project at:
Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba