kubectl-mcp-server 1.19.2__tar.gz → 1.21.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/PKG-INFO +26 -18
  2. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/README.md +24 -16
  3. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_server.egg-info/PKG-INFO +26 -18
  4. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_server.egg-info/SOURCES.txt +5 -1
  5. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/__init__.py +1 -1
  6. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/mcp_server.py +5 -1
  7. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/__init__.py +4 -0
  8. kubectl_mcp_server-1.21.0/kubectl_mcp_tool/tools/kind.py +1723 -0
  9. kubectl_mcp_server-1.21.0/kubectl_mcp_tool/tools/vind.py +744 -0
  10. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/setup.py +2 -2
  11. kubectl_mcp_server-1.21.0/tests/test_kind.py +1206 -0
  12. kubectl_mcp_server-1.21.0/tests/test_vind.py +512 -0
  13. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/LICENSE +0 -0
  14. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_server.egg-info/dependency_links.txt +0 -0
  15. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_server.egg-info/entry_points.txt +0 -0
  16. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_server.egg-info/requires.txt +0 -0
  17. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_server.egg-info/top_level.txt +0 -0
  18. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/__main__.py +0 -0
  19. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/auth/__init__.py +0 -0
  20. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/auth/config.py +0 -0
  21. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/auth/scopes.py +0 -0
  22. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/auth/verifier.py +0 -0
  23. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/cli/__init__.py +0 -0
  24. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/cli/__main__.py +0 -0
  25. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/cli/cli.py +0 -0
  26. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/cli/errors.py +0 -0
  27. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/cli/output.py +0 -0
  28. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/config/__init__.py +0 -0
  29. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/config/loader.py +0 -0
  30. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/config/schema.py +0 -0
  31. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/crd_detector.py +0 -0
  32. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/diagnostics.py +0 -0
  33. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/k8s_config.py +0 -0
  34. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/observability/__init__.py +0 -0
  35. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/observability/metrics.py +0 -0
  36. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/observability/stats.py +0 -0
  37. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/observability/tracing.py +0 -0
  38. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/prompts/__init__.py +0 -0
  39. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/prompts/builtin.py +0 -0
  40. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/prompts/custom.py +0 -0
  41. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/prompts/prompts.py +0 -0
  42. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/providers.py +0 -0
  43. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/resources/__init__.py +0 -0
  44. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/resources/resources.py +0 -0
  45. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/safety.py +0 -0
  46. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/backup.py +0 -0
  47. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/browser.py +0 -0
  48. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/capi.py +0 -0
  49. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/certs.py +0 -0
  50. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/cilium.py +0 -0
  51. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/cluster.py +0 -0
  52. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/core.py +0 -0
  53. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/cost.py +0 -0
  54. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/deployments.py +0 -0
  55. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/diagnostics.py +0 -0
  56. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/gitops.py +0 -0
  57. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/helm.py +0 -0
  58. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/keda.py +0 -0
  59. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/kiali.py +0 -0
  60. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/kubevirt.py +0 -0
  61. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/networking.py +0 -0
  62. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/operations.py +0 -0
  63. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/pods.py +0 -0
  64. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/policy.py +0 -0
  65. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/rollouts.py +0 -0
  66. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/security.py +0 -0
  67. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/storage.py +0 -0
  68. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/ui.py +0 -0
  69. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/tools/utils.py +0 -0
  70. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/utils/__init__.py +0 -0
  71. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/kubectl_mcp_tool/utils/helpers.py +0 -0
  72. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/setup.cfg +0 -0
  73. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/__init__.py +0 -0
  74. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/conftest.py +0 -0
  75. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_auth.py +0 -0
  76. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_browser.py +0 -0
  77. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_cli.py +0 -0
  78. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_config.py +0 -0
  79. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_ecosystem.py +0 -0
  80. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_mcp_integration.py +0 -0
  81. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_observability.py +0 -0
  82. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_prompts.py +0 -0
  83. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_resources.py +0 -0
  84. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_safety.py +0 -0
  85. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_server.py +0 -0
  86. {kubectl_mcp_server-1.19.2 → kubectl_mcp_server-1.21.0}/tests/test_tools.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kubectl-mcp-server
3
- Version: 1.19.2
4
- Summary: A Model Context Protocol (MCP) server for Kubernetes with 235+ tools, 8 resources, and 8 prompts
3
+ Version: 1.21.0
4
+ Summary: A Model Context Protocol (MCP) server for Kubernetes with 270+ tools, 8 resources, and 8 prompts
5
5
  Home-page: https://github.com/rohitg00/kubectl-mcp-server
6
6
  Author: Rohit Ghumare
7
7
  Author-email: ghumare64@gmail.com
@@ -79,7 +79,8 @@ Talk to your clusters like you talk to a DevOps expert. Debug crashed pods, opti
79
79
  <a href="https://pypi.org/project/kubectl-mcp-server/"><img src="https://img.shields.io/pypi/v/kubectl-mcp-server?color=blue&label=PyPI" alt="PyPI"></a>
80
80
  <a href="https://www.npmjs.com/package/kubectl-mcp-server"><img src="https://img.shields.io/npm/v/kubectl-mcp-server?color=green&label=npm" alt="npm"></a>
81
81
  <a href="https://hub.docker.com/r/rohitghumare64/kubectl-mcp-server"><img src="https://img.shields.io/docker/pulls/rohitghumare64/kubectl-mcp-server.svg" alt="Docker"></a>
82
- <a href="https://github.com/rohitg00/kubectl-mcp-server"><img src="https://img.shields.io/badge/tests-234%20passed-success" alt="Tests"></a>
82
+ <a href="https://github.com/rohitg00/kubectl-mcp-server"><img src="https://img.shields.io/badge/tests-234%20passed-success"
83
+ <a href="https://deepwiki.com/rohitg00/kubectl-mcp-server"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
83
84
  <a href="https://aregistry.ai"><img src="https://img.shields.io/badge/agentregistry-verified-blue?logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTE1Ljk5MiA2LjAzN2wtMy4wMjEtLjQzOS0xLjM1LTIuNzM2Yy0uMzQ2LS43MDItMS41MDQtLjcwMi0xLjg1IDBMOC40MjEgNS41OTggNS40IDYuMDM3Yy0uNzc2LjExMy0xLjA4OCAxLjA1My0uNTI4IDEuNTkzbDIuMTg2IDIuMTI5LS41MTYgMy4wMWMtLjEzMy43NzUuNjgyIDEuMzY2IDEuMzc4Ljk5OGwyLjcwMi0xLjQyIDIuNzAyIDEuNDJjLjY5Ni4zNjggMS41MTEtLjIyMyAxLjM3OC0uOTk4bC0uNTE2LTMuMDEgMi4xODYtMi4xMjljLjU2LS41NCAwLjI0OC0xLjQ4LS41MjgtMS41OTN6Ii8+PC9zdmc+" alt="agentregistry"></a>
84
85
  </p>
85
86
 
@@ -166,7 +167,7 @@ Simply ask your AI assistant in natural language:
166
167
  - Interactive HTML dashboards with live metrics
167
168
  - Visual timeline of events and resource usage
168
169
 
169
- **224 powerful tools** | **8 workflow prompts** | **8 data resources** | **Works with all major AI assistants**
170
+ **253 powerful tools** | **8 workflow prompts** | **8 data resources** | **Works with all major AI assistants**
170
171
 
171
172
  ## Why kubectl-mcp-server?
172
173
 
@@ -236,9 +237,12 @@ pip install git+https://github.com/rohitg00/kubectl-mcp-server.git
236
237
  ### Docker
237
238
 
238
239
  ```bash
239
- # Pull and run with Docker
240
+ # Pull from Docker Hub
240
241
  docker pull rohitghumare64/kubectl-mcp-server:latest
241
242
 
243
+ # Or pull from GitHub Container Registry
244
+ docker pull ghcr.io/rohitg00/kubectl-mcp-server:latest
245
+
242
246
  # Run with stdio transport
243
247
  docker run -i -v $HOME/.kube:/root/.kube:ro rohitghumare64/kubectl-mcp-server:latest
244
248
 
@@ -480,7 +484,7 @@ Add to `~/.config/roo-code/mcp.json` or `~/.config/kilo-code/mcp.json`:
480
484
 
481
485
  ## Complete Feature Set
482
486
 
483
- ### 224 MCP Tools for Complete Kubernetes Management
487
+ ### 253 MCP Tools for Complete Kubernetes Management
484
488
 
485
489
  | Category | Tools |
486
490
  |----------|-------|
@@ -515,6 +519,8 @@ Add to `~/.config/roo-code/mcp.json` or `~/.config/kilo-code/mcp.json`:
515
519
  | **Cluster API** | `capi_clusters_list`, `capi_cluster_get`, `capi_machines_list`, `capi_machine_get`, `capi_machinedeployments_list`, `capi_machinedeployment_scale`, `capi_machinesets_list`, `capi_machinehealthchecks_list`, `capi_clusterclasses_list`, `capi_cluster_kubeconfig`, `capi_detect` |
516
520
  | **KubeVirt VMs** | `kubevirt_vms_list`, `kubevirt_vm_get`, `kubevirt_vmis_list`, `kubevirt_vm_start`, `kubevirt_vm_stop`, `kubevirt_vm_restart`, `kubevirt_vm_pause`, `kubevirt_vm_unpause`, `kubevirt_vm_migrate`, `kubevirt_datasources_list`, `kubevirt_instancetypes_list`, `kubevirt_datavolumes_list`, `kubevirt_detect` |
517
521
  | **Istio/Kiali** | `istio_virtualservices_list`, `istio_virtualservice_get`, `istio_destinationrules_list`, `istio_gateways_list`, `istio_peerauthentications_list`, `istio_authorizationpolicies_list`, `istio_proxy_status`, `istio_analyze`, `istio_sidecar_status`, `istio_detect` |
522
+ | **vCluster (vind)** | `vind_detect_tool`, `vind_list_clusters_tool`, `vind_status_tool`, `vind_get_kubeconfig_tool`, `vind_logs_tool`, `vind_create_cluster_tool`, `vind_delete_cluster_tool`, `vind_pause_tool`, `vind_resume_tool`, `vind_connect_tool`, `vind_disconnect_tool`, `vind_upgrade_tool`, `vind_describe_tool`, `vind_platform_start_tool` |
523
+ | **kind (K8s in Docker)** | `kind_detect_tool`, `kind_version_tool`, `kind_list_clusters_tool`, `kind_get_nodes_tool`, `kind_get_kubeconfig_tool`, `kind_export_logs_tool`, `kind_cluster_info_tool`, `kind_node_labels_tool`, `kind_create_cluster_tool`, `kind_delete_cluster_tool`, `kind_delete_all_clusters_tool`, `kind_load_image_tool`, `kind_load_image_archive_tool`, `kind_build_node_image_tool`, `kind_set_kubeconfig_tool` |
518
524
 
519
525
  ### MCP Resources
520
526
 
@@ -554,12 +560,12 @@ Pre-built workflow prompts for common Kubernetes operations:
554
560
 
555
561
  ### Key Capabilities
556
562
 
557
- - 🤖 **224 Powerful Tools** - Complete Kubernetes management from pods to security
563
+ - 🤖 **253 Powerful Tools** - Complete Kubernetes management from pods to security
558
564
  - 🎯 **8 AI Workflow Prompts** - Pre-built workflows for common operations
559
565
  - 📊 **8 MCP Resources** - Browsable Kubernetes data exposure
560
566
  - 🎨 **6 Interactive Dashboards** - HTML UI tools for visual cluster management
561
567
  - 🌐 **26 Browser Tools** - Web automation with cloud provider support
562
- - 🔄 **93 Ecosystem Tools** - GitOps, Cert-Manager, Policy, Backup, KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio
568
+ - 🔄 **107 Ecosystem Tools** - GitOps, Cert-Manager, Policy, Backup, KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio, vCluster
563
569
  - ⚡ **Multi-Transport** - stdio, SSE, HTTP, streamable-http
564
570
  - 🔐 **Security First** - Non-destructive mode, secret masking, RBAC validation
565
571
  - 🏥 **Advanced Diagnostics** - AI-powered troubleshooting and cost optimization
@@ -794,7 +800,7 @@ EOF
794
800
  agentgateway --config gateway.yaml
795
801
  ```
796
802
 
797
- Connect clients to `http://localhost:3000/mcp` for unified access to all 224 tools.
803
+ Connect clients to `http://localhost:3000/mcp` for unified access to all 253 tools.
798
804
 
799
805
  ## In-Cluster Deployment
800
806
 
@@ -853,7 +859,7 @@ kubectl apply -f deploy/kagent/toolserver-stdio.yaml
853
859
  kagent dashboard
854
860
  ```
855
861
 
856
- Your AI agents now have access to all 224 Kubernetes tools. See [kagent quickstart](https://kagent.dev/docs/kagent/getting-started/quickstart).
862
+ Your AI agents now have access to all 253 Kubernetes tools. See [kagent quickstart](https://kagent.dev/docs/kagent/getting-started/quickstart).
857
863
 
858
864
  ## Architecture
859
865
 
@@ -871,7 +877,7 @@ The MCP server implements the [Model Context Protocol](https://github.com/modelc
871
877
  ```
872
878
  kubectl_mcp_tool/
873
879
  ├── mcp_server.py # Main server (FastMCP, transports)
874
- ├── tools/ # 224 MCP tools organized by category
880
+ ├── tools/ # 253 MCP tools organized by category
875
881
  │ ├── pods.py # Pod management & diagnostics
876
882
  │ ├── deployments.py # Deployments, StatefulSets, DaemonSets
877
883
  │ ├── core.py # Namespaces, ConfigMaps, Secrets
@@ -893,15 +899,16 @@ kubectl_mcp_tool/
893
899
  │ ├── rollouts.py # Argo Rollouts/Flagger
894
900
  │ ├── capi.py # Cluster API
895
901
  │ ├── kubevirt.py # KubeVirt VMs
896
- └── kiali.py # Istio/Kiali service mesh
902
+ ├── kiali.py # Istio/Kiali service mesh
903
+ │ └── vind.py # vCluster (virtual clusters)
897
904
  ├── resources/ # 8 MCP Resources for data exposure
898
905
  ├── prompts/ # 8 MCP Prompts for workflows
899
906
  └── cli/ # CLI interface
900
907
  ```
901
908
 
902
- ## Agent Skills (24 Skills for AI Coding Agents)
909
+ ## Agent Skills (25 Skills for AI Coding Agents)
903
910
 
904
- Extend your AI coding agent with Kubernetes expertise using our [Agent Skills](https://agentskills.io) library. Skills provide specialized knowledge and workflows that agents can load on demand.
911
+ Extend your AI coding agent with Kubernetes expertise using our [Agent Skills](https://agenstskills.com) library. Skills provide specialized knowledge and workflows that agents can load on demand.
905
912
 
906
913
  ### Quick Install
907
914
 
@@ -913,7 +920,7 @@ cp -r kubernetes-skills/claude/* ~/.claude/skills/
913
920
  cp -r kubernetes-skills/claude/k8s-helm ~/.claude/skills/
914
921
  ```
915
922
 
916
- ### Available Skills (24)
923
+ ### Available Skills (25)
917
924
 
918
925
  | Category | Skills |
919
926
  |----------|--------|
@@ -923,7 +930,7 @@ cp -r kubernetes-skills/claude/k8s-helm ~/.claude/skills/
923
930
  | **Security** | k8s-security, k8s-policy, k8s-certs |
924
931
  | **GitOps** | k8s-gitops, k8s-rollouts |
925
932
  | **Scaling** | k8s-autoscaling, k8s-cost, k8s-backup |
926
- | **Multi-Cluster** | k8s-multicluster, k8s-capi, k8s-kubevirt |
933
+ | **Multi-Cluster** | k8s-multicluster, k8s-capi, k8s-kubevirt, k8s-vind |
927
934
  | **Networking** | k8s-service-mesh, k8s-cilium |
928
935
  | **Tools** | k8s-browser, k8s-cli |
929
936
 
@@ -951,7 +958,8 @@ Seamlessly manage multiple Kubernetes clusters through natural language. **Every
951
958
 
952
959
  ### Context Parameter (v1.15.0)
953
960
 
954
- All 224 tools accept an optional `context` parameter to target specific clusters:
961
+ Most kubectl-backed tools accept an optional `context` parameter to target specific clusters.
962
+ Note: vCluster (vind) and kind tools run via their local CLIs and do not accept the `context` parameter.
955
963
 
956
964
  **Talk to your AI assistant:**
957
965
  ```
@@ -1040,7 +1048,7 @@ pytest tests/ -v -m unit
1040
1048
  tests/
1041
1049
  ├── __init__.py # Test package
1042
1050
  ├── conftest.py # Shared fixtures and mocks
1043
- ├── test_tools.py # Unit tests for 224 MCP tools
1051
+ ├── test_tools.py # Unit tests for 253 MCP tools
1044
1052
  ├── test_resources.py # Tests for 8 MCP Resources
1045
1053
  ├── test_prompts.py # Tests for 8 MCP Prompts
1046
1054
  └── test_server.py # Server initialization tests
@@ -21,7 +21,8 @@ Talk to your clusters like you talk to a DevOps expert. Debug crashed pods, opti
21
21
  <a href="https://pypi.org/project/kubectl-mcp-server/"><img src="https://img.shields.io/pypi/v/kubectl-mcp-server?color=blue&label=PyPI" alt="PyPI"></a>
22
22
  <a href="https://www.npmjs.com/package/kubectl-mcp-server"><img src="https://img.shields.io/npm/v/kubectl-mcp-server?color=green&label=npm" alt="npm"></a>
23
23
  <a href="https://hub.docker.com/r/rohitghumare64/kubectl-mcp-server"><img src="https://img.shields.io/docker/pulls/rohitghumare64/kubectl-mcp-server.svg" alt="Docker"></a>
24
- <a href="https://github.com/rohitg00/kubectl-mcp-server"><img src="https://img.shields.io/badge/tests-234%20passed-success" alt="Tests"></a>
24
+ <a href="https://github.com/rohitg00/kubectl-mcp-server"><img src="https://img.shields.io/badge/tests-234%20passed-success"
25
+ <a href="https://deepwiki.com/rohitg00/kubectl-mcp-server"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
25
26
  <a href="https://aregistry.ai"><img src="https://img.shields.io/badge/agentregistry-verified-blue?logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTE1Ljk5MiA2LjAzN2wtMy4wMjEtLjQzOS0xLjM1LTIuNzM2Yy0uMzQ2LS43MDItMS41MDQtLjcwMi0xLjg1IDBMOC40MjEgNS41OTggNS40IDYuMDM3Yy0uNzc2LjExMy0xLjA4OCAxLjA1My0uNTI4IDEuNTkzbDIuMTg2IDIuMTI5LS41MTYgMy4wMWMtLjEzMy43NzUuNjgyIDEuMzY2IDEuMzc4Ljk5OGwyLjcwMi0xLjQyIDIuNzAyIDEuNDJjLjY5Ni4zNjggMS41MTEtLjIyMyAxLjM3OC0uOTk4bC0uNTE2LTMuMDEgMi4xODYtMi4xMjljLjU2LS41NCAwLjI0OC0xLjQ4LS41MjgtMS41OTN6Ii8+PC9zdmc+" alt="agentregistry"></a>
26
27
  </p>
27
28
 
@@ -108,7 +109,7 @@ Simply ask your AI assistant in natural language:
108
109
  - Interactive HTML dashboards with live metrics
109
110
  - Visual timeline of events and resource usage
110
111
 
111
- **224 powerful tools** | **8 workflow prompts** | **8 data resources** | **Works with all major AI assistants**
112
+ **253 powerful tools** | **8 workflow prompts** | **8 data resources** | **Works with all major AI assistants**
112
113
 
113
114
  ## Why kubectl-mcp-server?
114
115
 
@@ -178,9 +179,12 @@ pip install git+https://github.com/rohitg00/kubectl-mcp-server.git
178
179
  ### Docker
179
180
 
180
181
  ```bash
181
- # Pull and run with Docker
182
+ # Pull from Docker Hub
182
183
  docker pull rohitghumare64/kubectl-mcp-server:latest
183
184
 
185
+ # Or pull from GitHub Container Registry
186
+ docker pull ghcr.io/rohitg00/kubectl-mcp-server:latest
187
+
184
188
  # Run with stdio transport
185
189
  docker run -i -v $HOME/.kube:/root/.kube:ro rohitghumare64/kubectl-mcp-server:latest
186
190
 
@@ -422,7 +426,7 @@ Add to `~/.config/roo-code/mcp.json` or `~/.config/kilo-code/mcp.json`:
422
426
 
423
427
  ## Complete Feature Set
424
428
 
425
- ### 224 MCP Tools for Complete Kubernetes Management
429
+ ### 253 MCP Tools for Complete Kubernetes Management
426
430
 
427
431
  | Category | Tools |
428
432
  |----------|-------|
@@ -457,6 +461,8 @@ Add to `~/.config/roo-code/mcp.json` or `~/.config/kilo-code/mcp.json`:
457
461
  | **Cluster API** | `capi_clusters_list`, `capi_cluster_get`, `capi_machines_list`, `capi_machine_get`, `capi_machinedeployments_list`, `capi_machinedeployment_scale`, `capi_machinesets_list`, `capi_machinehealthchecks_list`, `capi_clusterclasses_list`, `capi_cluster_kubeconfig`, `capi_detect` |
458
462
  | **KubeVirt VMs** | `kubevirt_vms_list`, `kubevirt_vm_get`, `kubevirt_vmis_list`, `kubevirt_vm_start`, `kubevirt_vm_stop`, `kubevirt_vm_restart`, `kubevirt_vm_pause`, `kubevirt_vm_unpause`, `kubevirt_vm_migrate`, `kubevirt_datasources_list`, `kubevirt_instancetypes_list`, `kubevirt_datavolumes_list`, `kubevirt_detect` |
459
463
  | **Istio/Kiali** | `istio_virtualservices_list`, `istio_virtualservice_get`, `istio_destinationrules_list`, `istio_gateways_list`, `istio_peerauthentications_list`, `istio_authorizationpolicies_list`, `istio_proxy_status`, `istio_analyze`, `istio_sidecar_status`, `istio_detect` |
464
+ | **vCluster (vind)** | `vind_detect_tool`, `vind_list_clusters_tool`, `vind_status_tool`, `vind_get_kubeconfig_tool`, `vind_logs_tool`, `vind_create_cluster_tool`, `vind_delete_cluster_tool`, `vind_pause_tool`, `vind_resume_tool`, `vind_connect_tool`, `vind_disconnect_tool`, `vind_upgrade_tool`, `vind_describe_tool`, `vind_platform_start_tool` |
465
+ | **kind (K8s in Docker)** | `kind_detect_tool`, `kind_version_tool`, `kind_list_clusters_tool`, `kind_get_nodes_tool`, `kind_get_kubeconfig_tool`, `kind_export_logs_tool`, `kind_cluster_info_tool`, `kind_node_labels_tool`, `kind_create_cluster_tool`, `kind_delete_cluster_tool`, `kind_delete_all_clusters_tool`, `kind_load_image_tool`, `kind_load_image_archive_tool`, `kind_build_node_image_tool`, `kind_set_kubeconfig_tool` |
460
466
 
461
467
  ### MCP Resources
462
468
 
@@ -496,12 +502,12 @@ Pre-built workflow prompts for common Kubernetes operations:
496
502
 
497
503
  ### Key Capabilities
498
504
 
499
- - 🤖 **224 Powerful Tools** - Complete Kubernetes management from pods to security
505
+ - 🤖 **253 Powerful Tools** - Complete Kubernetes management from pods to security
500
506
  - 🎯 **8 AI Workflow Prompts** - Pre-built workflows for common operations
501
507
  - 📊 **8 MCP Resources** - Browsable Kubernetes data exposure
502
508
  - 🎨 **6 Interactive Dashboards** - HTML UI tools for visual cluster management
503
509
  - 🌐 **26 Browser Tools** - Web automation with cloud provider support
504
- - 🔄 **93 Ecosystem Tools** - GitOps, Cert-Manager, Policy, Backup, KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio
510
+ - 🔄 **107 Ecosystem Tools** - GitOps, Cert-Manager, Policy, Backup, KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio, vCluster
505
511
  - ⚡ **Multi-Transport** - stdio, SSE, HTTP, streamable-http
506
512
  - 🔐 **Security First** - Non-destructive mode, secret masking, RBAC validation
507
513
  - 🏥 **Advanced Diagnostics** - AI-powered troubleshooting and cost optimization
@@ -736,7 +742,7 @@ EOF
736
742
  agentgateway --config gateway.yaml
737
743
  ```
738
744
 
739
- Connect clients to `http://localhost:3000/mcp` for unified access to all 224 tools.
745
+ Connect clients to `http://localhost:3000/mcp` for unified access to all 253 tools.
740
746
 
741
747
  ## In-Cluster Deployment
742
748
 
@@ -795,7 +801,7 @@ kubectl apply -f deploy/kagent/toolserver-stdio.yaml
795
801
  kagent dashboard
796
802
  ```
797
803
 
798
- Your AI agents now have access to all 224 Kubernetes tools. See [kagent quickstart](https://kagent.dev/docs/kagent/getting-started/quickstart).
804
+ Your AI agents now have access to all 253 Kubernetes tools. See [kagent quickstart](https://kagent.dev/docs/kagent/getting-started/quickstart).
799
805
 
800
806
  ## Architecture
801
807
 
@@ -813,7 +819,7 @@ The MCP server implements the [Model Context Protocol](https://github.com/modelc
813
819
  ```
814
820
  kubectl_mcp_tool/
815
821
  ├── mcp_server.py # Main server (FastMCP, transports)
816
- ├── tools/ # 224 MCP tools organized by category
822
+ ├── tools/ # 253 MCP tools organized by category
817
823
  │ ├── pods.py # Pod management & diagnostics
818
824
  │ ├── deployments.py # Deployments, StatefulSets, DaemonSets
819
825
  │ ├── core.py # Namespaces, ConfigMaps, Secrets
@@ -835,15 +841,16 @@ kubectl_mcp_tool/
835
841
  │ ├── rollouts.py # Argo Rollouts/Flagger
836
842
  │ ├── capi.py # Cluster API
837
843
  │ ├── kubevirt.py # KubeVirt VMs
838
- └── kiali.py # Istio/Kiali service mesh
844
+ ├── kiali.py # Istio/Kiali service mesh
845
+ │ └── vind.py # vCluster (virtual clusters)
839
846
  ├── resources/ # 8 MCP Resources for data exposure
840
847
  ├── prompts/ # 8 MCP Prompts for workflows
841
848
  └── cli/ # CLI interface
842
849
  ```
843
850
 
844
- ## Agent Skills (24 Skills for AI Coding Agents)
851
+ ## Agent Skills (25 Skills for AI Coding Agents)
845
852
 
846
- Extend your AI coding agent with Kubernetes expertise using our [Agent Skills](https://agentskills.io) library. Skills provide specialized knowledge and workflows that agents can load on demand.
853
+ Extend your AI coding agent with Kubernetes expertise using our [Agent Skills](https://agenstskills.com) library. Skills provide specialized knowledge and workflows that agents can load on demand.
847
854
 
848
855
  ### Quick Install
849
856
 
@@ -855,7 +862,7 @@ cp -r kubernetes-skills/claude/* ~/.claude/skills/
855
862
  cp -r kubernetes-skills/claude/k8s-helm ~/.claude/skills/
856
863
  ```
857
864
 
858
- ### Available Skills (24)
865
+ ### Available Skills (25)
859
866
 
860
867
  | Category | Skills |
861
868
  |----------|--------|
@@ -865,7 +872,7 @@ cp -r kubernetes-skills/claude/k8s-helm ~/.claude/skills/
865
872
  | **Security** | k8s-security, k8s-policy, k8s-certs |
866
873
  | **GitOps** | k8s-gitops, k8s-rollouts |
867
874
  | **Scaling** | k8s-autoscaling, k8s-cost, k8s-backup |
868
- | **Multi-Cluster** | k8s-multicluster, k8s-capi, k8s-kubevirt |
875
+ | **Multi-Cluster** | k8s-multicluster, k8s-capi, k8s-kubevirt, k8s-vind |
869
876
  | **Networking** | k8s-service-mesh, k8s-cilium |
870
877
  | **Tools** | k8s-browser, k8s-cli |
871
878
 
@@ -893,7 +900,8 @@ Seamlessly manage multiple Kubernetes clusters through natural language. **Every
893
900
 
894
901
  ### Context Parameter (v1.15.0)
895
902
 
896
- All 224 tools accept an optional `context` parameter to target specific clusters:
903
+ Most kubectl-backed tools accept an optional `context` parameter to target specific clusters.
904
+ Note: vCluster (vind) and kind tools run via their local CLIs and do not accept the `context` parameter.
897
905
 
898
906
  **Talk to your AI assistant:**
899
907
  ```
@@ -982,7 +990,7 @@ pytest tests/ -v -m unit
982
990
  tests/
983
991
  ├── __init__.py # Test package
984
992
  ├── conftest.py # Shared fixtures and mocks
985
- ├── test_tools.py # Unit tests for 224 MCP tools
993
+ ├── test_tools.py # Unit tests for 253 MCP tools
986
994
  ├── test_resources.py # Tests for 8 MCP Resources
987
995
  ├── test_prompts.py # Tests for 8 MCP Prompts
988
996
  └── test_server.py # Server initialization tests
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kubectl-mcp-server
3
- Version: 1.19.2
4
- Summary: A Model Context Protocol (MCP) server for Kubernetes with 235+ tools, 8 resources, and 8 prompts
3
+ Version: 1.21.0
4
+ Summary: A Model Context Protocol (MCP) server for Kubernetes with 270+ tools, 8 resources, and 8 prompts
5
5
  Home-page: https://github.com/rohitg00/kubectl-mcp-server
6
6
  Author: Rohit Ghumare
7
7
  Author-email: ghumare64@gmail.com
@@ -79,7 +79,8 @@ Talk to your clusters like you talk to a DevOps expert. Debug crashed pods, opti
79
79
  <a href="https://pypi.org/project/kubectl-mcp-server/"><img src="https://img.shields.io/pypi/v/kubectl-mcp-server?color=blue&label=PyPI" alt="PyPI"></a>
80
80
  <a href="https://www.npmjs.com/package/kubectl-mcp-server"><img src="https://img.shields.io/npm/v/kubectl-mcp-server?color=green&label=npm" alt="npm"></a>
81
81
  <a href="https://hub.docker.com/r/rohitghumare64/kubectl-mcp-server"><img src="https://img.shields.io/docker/pulls/rohitghumare64/kubectl-mcp-server.svg" alt="Docker"></a>
82
- <a href="https://github.com/rohitg00/kubectl-mcp-server"><img src="https://img.shields.io/badge/tests-234%20passed-success" alt="Tests"></a>
82
+ <a href="https://github.com/rohitg00/kubectl-mcp-server"><img src="https://img.shields.io/badge/tests-234%20passed-success"
83
+ <a href="https://deepwiki.com/rohitg00/kubectl-mcp-server"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
83
84
  <a href="https://aregistry.ai"><img src="https://img.shields.io/badge/agentregistry-verified-blue?logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTE1Ljk5MiA2LjAzN2wtMy4wMjEtLjQzOS0xLjM1LTIuNzM2Yy0uMzQ2LS43MDItMS41MDQtLjcwMi0xLjg1IDBMOC40MjEgNS41OTggNS40IDYuMDM3Yy0uNzc2LjExMy0xLjA4OCAxLjA1My0uNTI4IDEuNTkzbDIuMTg2IDIuMTI5LS41MTYgMy4wMWMtLjEzMy43NzUuNjgyIDEuMzY2IDEuMzc4Ljk5OGwyLjcwMi0xLjQyIDIuNzAyIDEuNDJjLjY5Ni4zNjggMS41MTEtLjIyMyAxLjM3OC0uOTk4bC0uNTE2LTMuMDEgMi4xODYtMi4xMjljLjU2LS41NCAwLjI0OC0xLjQ4LS41MjgtMS41OTN6Ii8+PC9zdmc+" alt="agentregistry"></a>
84
85
  </p>
85
86
 
@@ -166,7 +167,7 @@ Simply ask your AI assistant in natural language:
166
167
  - Interactive HTML dashboards with live metrics
167
168
  - Visual timeline of events and resource usage
168
169
 
169
- **224 powerful tools** | **8 workflow prompts** | **8 data resources** | **Works with all major AI assistants**
170
+ **253 powerful tools** | **8 workflow prompts** | **8 data resources** | **Works with all major AI assistants**
170
171
 
171
172
  ## Why kubectl-mcp-server?
172
173
 
@@ -236,9 +237,12 @@ pip install git+https://github.com/rohitg00/kubectl-mcp-server.git
236
237
  ### Docker
237
238
 
238
239
  ```bash
239
- # Pull and run with Docker
240
+ # Pull from Docker Hub
240
241
  docker pull rohitghumare64/kubectl-mcp-server:latest
241
242
 
243
+ # Or pull from GitHub Container Registry
244
+ docker pull ghcr.io/rohitg00/kubectl-mcp-server:latest
245
+
242
246
  # Run with stdio transport
243
247
  docker run -i -v $HOME/.kube:/root/.kube:ro rohitghumare64/kubectl-mcp-server:latest
244
248
 
@@ -480,7 +484,7 @@ Add to `~/.config/roo-code/mcp.json` or `~/.config/kilo-code/mcp.json`:
480
484
 
481
485
  ## Complete Feature Set
482
486
 
483
- ### 224 MCP Tools for Complete Kubernetes Management
487
+ ### 253 MCP Tools for Complete Kubernetes Management
484
488
 
485
489
  | Category | Tools |
486
490
  |----------|-------|
@@ -515,6 +519,8 @@ Add to `~/.config/roo-code/mcp.json` or `~/.config/kilo-code/mcp.json`:
515
519
  | **Cluster API** | `capi_clusters_list`, `capi_cluster_get`, `capi_machines_list`, `capi_machine_get`, `capi_machinedeployments_list`, `capi_machinedeployment_scale`, `capi_machinesets_list`, `capi_machinehealthchecks_list`, `capi_clusterclasses_list`, `capi_cluster_kubeconfig`, `capi_detect` |
516
520
  | **KubeVirt VMs** | `kubevirt_vms_list`, `kubevirt_vm_get`, `kubevirt_vmis_list`, `kubevirt_vm_start`, `kubevirt_vm_stop`, `kubevirt_vm_restart`, `kubevirt_vm_pause`, `kubevirt_vm_unpause`, `kubevirt_vm_migrate`, `kubevirt_datasources_list`, `kubevirt_instancetypes_list`, `kubevirt_datavolumes_list`, `kubevirt_detect` |
517
521
  | **Istio/Kiali** | `istio_virtualservices_list`, `istio_virtualservice_get`, `istio_destinationrules_list`, `istio_gateways_list`, `istio_peerauthentications_list`, `istio_authorizationpolicies_list`, `istio_proxy_status`, `istio_analyze`, `istio_sidecar_status`, `istio_detect` |
522
+ | **vCluster (vind)** | `vind_detect_tool`, `vind_list_clusters_tool`, `vind_status_tool`, `vind_get_kubeconfig_tool`, `vind_logs_tool`, `vind_create_cluster_tool`, `vind_delete_cluster_tool`, `vind_pause_tool`, `vind_resume_tool`, `vind_connect_tool`, `vind_disconnect_tool`, `vind_upgrade_tool`, `vind_describe_tool`, `vind_platform_start_tool` |
523
+ | **kind (K8s in Docker)** | `kind_detect_tool`, `kind_version_tool`, `kind_list_clusters_tool`, `kind_get_nodes_tool`, `kind_get_kubeconfig_tool`, `kind_export_logs_tool`, `kind_cluster_info_tool`, `kind_node_labels_tool`, `kind_create_cluster_tool`, `kind_delete_cluster_tool`, `kind_delete_all_clusters_tool`, `kind_load_image_tool`, `kind_load_image_archive_tool`, `kind_build_node_image_tool`, `kind_set_kubeconfig_tool` |
518
524
 
519
525
  ### MCP Resources
520
526
 
@@ -554,12 +560,12 @@ Pre-built workflow prompts for common Kubernetes operations:
554
560
 
555
561
  ### Key Capabilities
556
562
 
557
- - 🤖 **224 Powerful Tools** - Complete Kubernetes management from pods to security
563
+ - 🤖 **253 Powerful Tools** - Complete Kubernetes management from pods to security
558
564
  - 🎯 **8 AI Workflow Prompts** - Pre-built workflows for common operations
559
565
  - 📊 **8 MCP Resources** - Browsable Kubernetes data exposure
560
566
  - 🎨 **6 Interactive Dashboards** - HTML UI tools for visual cluster management
561
567
  - 🌐 **26 Browser Tools** - Web automation with cloud provider support
562
- - 🔄 **93 Ecosystem Tools** - GitOps, Cert-Manager, Policy, Backup, KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio
568
+ - 🔄 **107 Ecosystem Tools** - GitOps, Cert-Manager, Policy, Backup, KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio, vCluster
563
569
  - ⚡ **Multi-Transport** - stdio, SSE, HTTP, streamable-http
564
570
  - 🔐 **Security First** - Non-destructive mode, secret masking, RBAC validation
565
571
  - 🏥 **Advanced Diagnostics** - AI-powered troubleshooting and cost optimization
@@ -794,7 +800,7 @@ EOF
794
800
  agentgateway --config gateway.yaml
795
801
  ```
796
802
 
797
- Connect clients to `http://localhost:3000/mcp` for unified access to all 224 tools.
803
+ Connect clients to `http://localhost:3000/mcp` for unified access to all 253 tools.
798
804
 
799
805
  ## In-Cluster Deployment
800
806
 
@@ -853,7 +859,7 @@ kubectl apply -f deploy/kagent/toolserver-stdio.yaml
853
859
  kagent dashboard
854
860
  ```
855
861
 
856
- Your AI agents now have access to all 224 Kubernetes tools. See [kagent quickstart](https://kagent.dev/docs/kagent/getting-started/quickstart).
862
+ Your AI agents now have access to all 253 Kubernetes tools. See [kagent quickstart](https://kagent.dev/docs/kagent/getting-started/quickstart).
857
863
 
858
864
  ## Architecture
859
865
 
@@ -871,7 +877,7 @@ The MCP server implements the [Model Context Protocol](https://github.com/modelc
871
877
  ```
872
878
  kubectl_mcp_tool/
873
879
  ├── mcp_server.py # Main server (FastMCP, transports)
874
- ├── tools/ # 224 MCP tools organized by category
880
+ ├── tools/ # 253 MCP tools organized by category
875
881
  │ ├── pods.py # Pod management & diagnostics
876
882
  │ ├── deployments.py # Deployments, StatefulSets, DaemonSets
877
883
  │ ├── core.py # Namespaces, ConfigMaps, Secrets
@@ -893,15 +899,16 @@ kubectl_mcp_tool/
893
899
  │ ├── rollouts.py # Argo Rollouts/Flagger
894
900
  │ ├── capi.py # Cluster API
895
901
  │ ├── kubevirt.py # KubeVirt VMs
896
- └── kiali.py # Istio/Kiali service mesh
902
+ ├── kiali.py # Istio/Kiali service mesh
903
+ │ └── vind.py # vCluster (virtual clusters)
897
904
  ├── resources/ # 8 MCP Resources for data exposure
898
905
  ├── prompts/ # 8 MCP Prompts for workflows
899
906
  └── cli/ # CLI interface
900
907
  ```
901
908
 
902
- ## Agent Skills (24 Skills for AI Coding Agents)
909
+ ## Agent Skills (25 Skills for AI Coding Agents)
903
910
 
904
- Extend your AI coding agent with Kubernetes expertise using our [Agent Skills](https://agentskills.io) library. Skills provide specialized knowledge and workflows that agents can load on demand.
911
+ Extend your AI coding agent with Kubernetes expertise using our [Agent Skills](https://agenstskills.com) library. Skills provide specialized knowledge and workflows that agents can load on demand.
905
912
 
906
913
  ### Quick Install
907
914
 
@@ -913,7 +920,7 @@ cp -r kubernetes-skills/claude/* ~/.claude/skills/
913
920
  cp -r kubernetes-skills/claude/k8s-helm ~/.claude/skills/
914
921
  ```
915
922
 
916
- ### Available Skills (24)
923
+ ### Available Skills (25)
917
924
 
918
925
  | Category | Skills |
919
926
  |----------|--------|
@@ -923,7 +930,7 @@ cp -r kubernetes-skills/claude/k8s-helm ~/.claude/skills/
923
930
  | **Security** | k8s-security, k8s-policy, k8s-certs |
924
931
  | **GitOps** | k8s-gitops, k8s-rollouts |
925
932
  | **Scaling** | k8s-autoscaling, k8s-cost, k8s-backup |
926
- | **Multi-Cluster** | k8s-multicluster, k8s-capi, k8s-kubevirt |
933
+ | **Multi-Cluster** | k8s-multicluster, k8s-capi, k8s-kubevirt, k8s-vind |
927
934
  | **Networking** | k8s-service-mesh, k8s-cilium |
928
935
  | **Tools** | k8s-browser, k8s-cli |
929
936
 
@@ -951,7 +958,8 @@ Seamlessly manage multiple Kubernetes clusters through natural language. **Every
951
958
 
952
959
  ### Context Parameter (v1.15.0)
953
960
 
954
- All 224 tools accept an optional `context` parameter to target specific clusters:
961
+ Most kubectl-backed tools accept an optional `context` parameter to target specific clusters.
962
+ Note: vCluster (vind) and kind tools run via their local CLIs and do not accept the `context` parameter.
955
963
 
956
964
  **Talk to your AI assistant:**
957
965
  ```
@@ -1040,7 +1048,7 @@ pytest tests/ -v -m unit
1040
1048
  tests/
1041
1049
  ├── __init__.py # Test package
1042
1050
  ├── conftest.py # Shared fixtures and mocks
1043
- ├── test_tools.py # Unit tests for 224 MCP tools
1051
+ ├── test_tools.py # Unit tests for 253 MCP tools
1044
1052
  ├── test_resources.py # Tests for 8 MCP Resources
1045
1053
  ├── test_prompts.py # Tests for 8 MCP Prompts
1046
1054
  └── test_server.py # Server initialization tests
@@ -52,6 +52,7 @@ kubectl_mcp_tool/tools/gitops.py
52
52
  kubectl_mcp_tool/tools/helm.py
53
53
  kubectl_mcp_tool/tools/keda.py
54
54
  kubectl_mcp_tool/tools/kiali.py
55
+ kubectl_mcp_tool/tools/kind.py
55
56
  kubectl_mcp_tool/tools/kubevirt.py
56
57
  kubectl_mcp_tool/tools/networking.py
57
58
  kubectl_mcp_tool/tools/operations.py
@@ -62,6 +63,7 @@ kubectl_mcp_tool/tools/security.py
62
63
  kubectl_mcp_tool/tools/storage.py
63
64
  kubectl_mcp_tool/tools/ui.py
64
65
  kubectl_mcp_tool/tools/utils.py
66
+ kubectl_mcp_tool/tools/vind.py
65
67
  kubectl_mcp_tool/utils/__init__.py
66
68
  kubectl_mcp_tool/utils/helpers.py
67
69
  tests/__init__.py
@@ -71,10 +73,12 @@ tests/test_browser.py
71
73
  tests/test_cli.py
72
74
  tests/test_config.py
73
75
  tests/test_ecosystem.py
76
+ tests/test_kind.py
74
77
  tests/test_mcp_integration.py
75
78
  tests/test_observability.py
76
79
  tests/test_prompts.py
77
80
  tests/test_resources.py
78
81
  tests/test_safety.py
79
82
  tests/test_server.py
80
- tests/test_tools.py
83
+ tests/test_tools.py
84
+ tests/test_vind.py
@@ -7,7 +7,7 @@ with Kubernetes clusters through natural language commands.
7
7
  For more information, see: https://github.com/rohitg00/kubectl-mcp-server
8
8
  """
9
9
 
10
- __version__ = "1.19.0"
10
+ __version__ = "1.21.0"
11
11
 
12
12
  from .mcp_server import MCPServer
13
13
  from .diagnostics import run_diagnostics, check_kubectl_installation, check_cluster_connection
@@ -93,6 +93,8 @@ from kubectl_mcp_tool.tools import (
93
93
  register_capi_tools,
94
94
  register_kubevirt_tools,
95
95
  register_istio_tools,
96
+ register_vind_tools,
97
+ register_kind_tools,
96
98
  )
97
99
  from kubectl_mcp_tool.resources import register_resources
98
100
  from kubectl_mcp_tool.prompts import register_prompts
@@ -353,7 +355,9 @@ class MCPServer:
353
355
  register_capi_tools(self.server, self.non_destructive)
354
356
  register_kubevirt_tools(self.server, self.non_destructive)
355
357
  register_istio_tools(self.server, self.non_destructive)
356
- logger.debug("Advanced ecosystem tools registered (KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio)")
358
+ register_vind_tools(self.server, self.non_destructive)
359
+ register_kind_tools(self.server, self.non_destructive)
360
+ logger.debug("Advanced ecosystem tools registered (KEDA, Cilium, Rollouts, CAPI, KubeVirt, Istio, vind, kind)")
357
361
 
358
362
  def setup_resources(self):
359
363
  """Set up MCP resources for Kubernetes data exposure."""
@@ -21,6 +21,8 @@ from .rollouts import register_rollouts_tools
21
21
  from .capi import register_capi_tools
22
22
  from .kubevirt import register_kubevirt_tools
23
23
  from .kiali import register_istio_tools
24
+ from .vind import register_vind_tools
25
+ from .kind import register_kind_tools
24
26
 
25
27
  __all__ = [
26
28
  "register_helm_tools",
@@ -49,4 +51,6 @@ __all__ = [
49
51
  "register_capi_tools",
50
52
  "register_kubevirt_tools",
51
53
  "register_istio_tools",
54
+ "register_vind_tools",
55
+ "register_kind_tools",
52
56
  ]