kubectl-mcp-server 1.21.0__tar.gz → 1.22.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.
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/PKG-INFO +49 -1
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/README.md +48 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/PKG-INFO +49 -1
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/__init__.py +1 -1
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/setup.py +1 -1
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/LICENSE +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/SOURCES.txt +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/dependency_links.txt +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/entry_points.txt +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/requires.txt +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/top_level.txt +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/__main__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/auth/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/auth/config.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/auth/scopes.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/auth/verifier.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/cli/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/cli/__main__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/cli/cli.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/cli/errors.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/cli/output.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/config/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/config/loader.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/config/schema.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/crd_detector.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/diagnostics.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/k8s_config.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/mcp_server.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/metrics.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/stats.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/tracing.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/prompts/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/prompts/builtin.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/prompts/custom.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/prompts/prompts.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/providers.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/resources/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/resources/resources.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/safety.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/backup.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/browser.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/capi.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/certs.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/cilium.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/cluster.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/core.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/cost.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/deployments.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/diagnostics.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/gitops.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/helm.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/keda.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/kiali.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/kind.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/kubevirt.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/networking.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/operations.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/pods.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/policy.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/rollouts.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/security.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/storage.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/ui.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/utils.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/vind.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/utils/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/utils/helpers.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/setup.cfg +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/__init__.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/conftest.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_auth.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_browser.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_cli.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_config.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_ecosystem.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_kind.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_mcp_integration.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_observability.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_prompts.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_resources.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_safety.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_server.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_tools.py +0 -0
- {kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/tests/test_vind.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kubectl-mcp-server
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.22.0
|
|
4
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
|
|
@@ -732,6 +732,54 @@ kubectl-mcp-server
|
|
|
732
732
|
- Remote CDP connections
|
|
733
733
|
- Session management
|
|
734
734
|
|
|
735
|
+
## Optional: kubectl-mcp-app (8 Interactive UI Dashboards)
|
|
736
|
+
|
|
737
|
+
A standalone npm package that provides beautiful, interactive UI dashboards for Kubernetes management using the MCP ext-apps SDK.
|
|
738
|
+
|
|
739
|
+
**Installation:**
|
|
740
|
+
|
|
741
|
+
```bash
|
|
742
|
+
# Via npm
|
|
743
|
+
npm install -g kubectl-mcp-app
|
|
744
|
+
|
|
745
|
+
# Or via npx (no install)
|
|
746
|
+
npx kubectl-mcp-app
|
|
747
|
+
```
|
|
748
|
+
|
|
749
|
+
**Claude Desktop Configuration:**
|
|
750
|
+
|
|
751
|
+
```json
|
|
752
|
+
{
|
|
753
|
+
"mcpServers": {
|
|
754
|
+
"kubectl-app": {
|
|
755
|
+
"command": "npx",
|
|
756
|
+
"args": ["kubectl-mcp-app"]
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
```
|
|
761
|
+
|
|
762
|
+
**8 Interactive UI Tools:**
|
|
763
|
+
|
|
764
|
+
| Tool | Description |
|
|
765
|
+
| ---- | ----------- |
|
|
766
|
+
| `k8s-pods` | Interactive pod viewer with filtering, sorting, status indicators |
|
|
767
|
+
| `k8s-logs` | Real-time log viewer with syntax highlighting and search |
|
|
768
|
+
| `k8s-deploy` | Deployment dashboard with rollout status, scaling, rollback |
|
|
769
|
+
| `k8s-helm` | Helm release manager with upgrade/rollback actions |
|
|
770
|
+
| `k8s-cluster` | Cluster overview with node health and resource metrics |
|
|
771
|
+
| `k8s-cost` | Cost analyzer with waste detection and recommendations |
|
|
772
|
+
| `k8s-events` | Events timeline with type filtering and grouping |
|
|
773
|
+
| `k8s-network` | Network topology graph showing Services/Pods/Ingress |
|
|
774
|
+
|
|
775
|
+
**Features:**
|
|
776
|
+
- 🎨 Dark/light theme support
|
|
777
|
+
- 📊 Real-time data visualization
|
|
778
|
+
- 🖱️ Interactive actions (scale, restart, delete)
|
|
779
|
+
- 🔗 Seamless integration with kubectl-mcp-server
|
|
780
|
+
|
|
781
|
+
**More Info**: See [kubectl-mcp-app/README.md](./kubectl-mcp-app/README.md) for full documentation.
|
|
782
|
+
|
|
735
783
|
## Enterprise: OAuth 2.1 Authentication
|
|
736
784
|
|
|
737
785
|
Secure your MCP server with OAuth 2.1 authentication (RFC 9728).
|
|
@@ -674,6 +674,54 @@ kubectl-mcp-server
|
|
|
674
674
|
- Remote CDP connections
|
|
675
675
|
- Session management
|
|
676
676
|
|
|
677
|
+
## Optional: kubectl-mcp-app (8 Interactive UI Dashboards)
|
|
678
|
+
|
|
679
|
+
A standalone npm package that provides beautiful, interactive UI dashboards for Kubernetes management using the MCP ext-apps SDK.
|
|
680
|
+
|
|
681
|
+
**Installation:**
|
|
682
|
+
|
|
683
|
+
```bash
|
|
684
|
+
# Via npm
|
|
685
|
+
npm install -g kubectl-mcp-app
|
|
686
|
+
|
|
687
|
+
# Or via npx (no install)
|
|
688
|
+
npx kubectl-mcp-app
|
|
689
|
+
```
|
|
690
|
+
|
|
691
|
+
**Claude Desktop Configuration:**
|
|
692
|
+
|
|
693
|
+
```json
|
|
694
|
+
{
|
|
695
|
+
"mcpServers": {
|
|
696
|
+
"kubectl-app": {
|
|
697
|
+
"command": "npx",
|
|
698
|
+
"args": ["kubectl-mcp-app"]
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
```
|
|
703
|
+
|
|
704
|
+
**8 Interactive UI Tools:**
|
|
705
|
+
|
|
706
|
+
| Tool | Description |
|
|
707
|
+
| ---- | ----------- |
|
|
708
|
+
| `k8s-pods` | Interactive pod viewer with filtering, sorting, status indicators |
|
|
709
|
+
| `k8s-logs` | Real-time log viewer with syntax highlighting and search |
|
|
710
|
+
| `k8s-deploy` | Deployment dashboard with rollout status, scaling, rollback |
|
|
711
|
+
| `k8s-helm` | Helm release manager with upgrade/rollback actions |
|
|
712
|
+
| `k8s-cluster` | Cluster overview with node health and resource metrics |
|
|
713
|
+
| `k8s-cost` | Cost analyzer with waste detection and recommendations |
|
|
714
|
+
| `k8s-events` | Events timeline with type filtering and grouping |
|
|
715
|
+
| `k8s-network` | Network topology graph showing Services/Pods/Ingress |
|
|
716
|
+
|
|
717
|
+
**Features:**
|
|
718
|
+
- 🎨 Dark/light theme support
|
|
719
|
+
- 📊 Real-time data visualization
|
|
720
|
+
- 🖱️ Interactive actions (scale, restart, delete)
|
|
721
|
+
- 🔗 Seamless integration with kubectl-mcp-server
|
|
722
|
+
|
|
723
|
+
**More Info**: See [kubectl-mcp-app/README.md](./kubectl-mcp-app/README.md) for full documentation.
|
|
724
|
+
|
|
677
725
|
## Enterprise: OAuth 2.1 Authentication
|
|
678
726
|
|
|
679
727
|
Secure your MCP server with OAuth 2.1 authentication (RFC 9728).
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kubectl-mcp-server
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.22.0
|
|
4
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
|
|
@@ -732,6 +732,54 @@ kubectl-mcp-server
|
|
|
732
732
|
- Remote CDP connections
|
|
733
733
|
- Session management
|
|
734
734
|
|
|
735
|
+
## Optional: kubectl-mcp-app (8 Interactive UI Dashboards)
|
|
736
|
+
|
|
737
|
+
A standalone npm package that provides beautiful, interactive UI dashboards for Kubernetes management using the MCP ext-apps SDK.
|
|
738
|
+
|
|
739
|
+
**Installation:**
|
|
740
|
+
|
|
741
|
+
```bash
|
|
742
|
+
# Via npm
|
|
743
|
+
npm install -g kubectl-mcp-app
|
|
744
|
+
|
|
745
|
+
# Or via npx (no install)
|
|
746
|
+
npx kubectl-mcp-app
|
|
747
|
+
```
|
|
748
|
+
|
|
749
|
+
**Claude Desktop Configuration:**
|
|
750
|
+
|
|
751
|
+
```json
|
|
752
|
+
{
|
|
753
|
+
"mcpServers": {
|
|
754
|
+
"kubectl-app": {
|
|
755
|
+
"command": "npx",
|
|
756
|
+
"args": ["kubectl-mcp-app"]
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
```
|
|
761
|
+
|
|
762
|
+
**8 Interactive UI Tools:**
|
|
763
|
+
|
|
764
|
+
| Tool | Description |
|
|
765
|
+
| ---- | ----------- |
|
|
766
|
+
| `k8s-pods` | Interactive pod viewer with filtering, sorting, status indicators |
|
|
767
|
+
| `k8s-logs` | Real-time log viewer with syntax highlighting and search |
|
|
768
|
+
| `k8s-deploy` | Deployment dashboard with rollout status, scaling, rollback |
|
|
769
|
+
| `k8s-helm` | Helm release manager with upgrade/rollback actions |
|
|
770
|
+
| `k8s-cluster` | Cluster overview with node health and resource metrics |
|
|
771
|
+
| `k8s-cost` | Cost analyzer with waste detection and recommendations |
|
|
772
|
+
| `k8s-events` | Events timeline with type filtering and grouping |
|
|
773
|
+
| `k8s-network` | Network topology graph showing Services/Pods/Ingress |
|
|
774
|
+
|
|
775
|
+
**Features:**
|
|
776
|
+
- 🎨 Dark/light theme support
|
|
777
|
+
- 📊 Real-time data visualization
|
|
778
|
+
- 🖱️ Interactive actions (scale, restart, delete)
|
|
779
|
+
- 🔗 Seamless integration with kubectl-mcp-server
|
|
780
|
+
|
|
781
|
+
**More Info**: See [kubectl-mcp-app/README.md](./kubectl-mcp-app/README.md) for full documentation.
|
|
782
|
+
|
|
735
783
|
## Enterprise: OAuth 2.1 Authentication
|
|
736
784
|
|
|
737
785
|
Secure your MCP server with OAuth 2.1 authentication (RFC 9728).
|
|
@@ -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.
|
|
10
|
+
__version__ = "1.22.0"
|
|
11
11
|
|
|
12
12
|
from .mcp_server import MCPServer
|
|
13
13
|
from .diagnostics import run_diagnostics, check_kubectl_installation, check_cluster_connection
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="kubectl-mcp-server",
|
|
8
|
-
version="1.
|
|
8
|
+
version="1.22.0",
|
|
9
9
|
author="Rohit Ghumare",
|
|
10
10
|
author_email="ghumare64@gmail.com",
|
|
11
11
|
description="A Model Context Protocol (MCP) server for Kubernetes with 270+ tools, 8 resources, and 8 prompts",
|
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/requires.txt
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_server.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/__init__.py
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/metrics.py
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/stats.py
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/observability/tracing.py
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/prompts/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/resources/__init__.py
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/resources/resources.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/deployments.py
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/diagnostics.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/networking.py
RENAMED
|
File without changes
|
{kubectl_mcp_server-1.21.0 → kubectl_mcp_server-1.22.0}/kubectl_mcp_tool/tools/operations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|