mcp-server-kubernetes 4.0.3 → 4.0.4

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.
package/README.md CHANGED
@@ -2,16 +2,12 @@
2
2
 
3
3
  [![CI](https://github.com/Flux159/mcp-server-kubernetes/actions/workflows/ci.yml/badge.svg)](https://github.com/yourusername/mcp-server-kubernetes/actions/workflows/ci.yml)
4
4
  [![Language](https://img.shields.io/github/languages/top/Flux159/mcp-server-kubernetes)](https://github.com/yourusername/mcp-server-kubernetes)
5
- [![Bun](https://img.shields.io/badge/runtime-bun-orange)](https://bun.sh)
6
5
  [![Kubernetes](https://img.shields.io/badge/kubernetes-%23326ce5.svg?style=flat&logo=kubernetes&logoColor=white)](https://kubernetes.io/)
7
6
  [![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=flat&logo=docker&logoColor=white)](https://www.docker.com/)
8
7
  [![Stars](https://img.shields.io/github/stars/Flux159/mcp-server-kubernetes)](https://github.com/Flux159/mcp-server-kubernetes/stargazers)
9
8
  [![Issues](https://img.shields.io/github/issues/Flux159/mcp-server-kubernetes)](https://github.com/Flux159/mcp-server-kubernetes/issues)
10
9
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Flux159/mcp-server-kubernetes/pulls)
11
10
  [![Last Commit](https://img.shields.io/github/last-commit/Flux159/mcp-server-kubernetes)](https://github.com/Flux159/mcp-server-kubernetes/commits/main)
12
- [![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/Flux159/mcp-server-kubernetes)](https://archestra.ai/mcp-catalog/flux159__mcp-server-kubernetes)
13
- [![HVTrust](https://hvtracker.net/badge/kubernetes-mcp-server.svg)](https://hvtracker.net/agents/kubernetes-mcp-server/)
14
- [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/Flux159/mcp-server-kubernetes)
15
11
 
16
12
  <p align="center">
17
13
  <img src="https://raw.githubusercontent.com/Flux159/mcp-server-kubernetes/refs/heads/main/icon.png" width="200">
@@ -21,8 +17,6 @@ MCP Server that can connect to a Kubernetes cluster and manage it. Supports load
21
17
 
22
18
  https://github.com/user-attachments/assets/f25f8f4e-4d04-479b-9ae0-5dac452dd2ed
23
19
 
24
- <a href="https://glama.ai/mcp/servers/w71ieamqrt"><img width="380" height="200" src="https://glama.ai/mcp/servers/w71ieamqrt/badge" /></a>
25
-
26
20
  ## Installation & Usage
27
21
 
28
22
  ### Prerequisites
@@ -48,6 +42,16 @@ claude mcp add kubernetes -- npx mcp-server-kubernetes
48
42
 
49
43
  This will automatically configure the server in your Claude Code MCP settings.
50
44
 
45
+ ### Codex
46
+
47
+ Add the MCP server to [Codex CLI](https://developers.openai.com/codex/cli/) using the built-in command:
48
+
49
+ ```bash
50
+ codex mcp add kubernetes -- npx mcp-server-kubernetes
51
+ ```
52
+
53
+ This registers the server globally in `~/.codex/config.toml` and makes its tools available in all Codex sessions.
54
+
51
55
  ### Claude Desktop
52
56
 
53
57
  Add the following configuration to your Claude Desktop config file:
@@ -129,14 +133,6 @@ Windows:
129
133
  npx mcp-chat --config "%APPDATA%\Claude\claude_desktop_config.json"
130
134
  ```
131
135
 
132
- ## Gemini CLI
133
-
134
- [Gemini CLI](https://geminicli.com/) allows you to install mcp servers as extensions. From a shell, install the extension by pointing to this repo:
135
-
136
- ```shell
137
- gemini extensions install https://github.com/Flux159/mcp-server-kubernetes
138
- ```
139
-
140
136
  ## Features
141
137
 
142
138
  - [x] Connect to a Kubernetes cluster
@@ -1,6 +1,6 @@
1
1
  export declare const serverConfig: {
2
2
  readonly name: "kubernetes";
3
- readonly version: "4.0.3";
3
+ readonly version: "4.0.4";
4
4
  readonly capabilities: {
5
5
  readonly resources: {};
6
6
  readonly tools: {};
@@ -1,6 +1,6 @@
1
1
  export const serverConfig = {
2
2
  name: "kubernetes",
3
- version: "4.0.3",
3
+ version: "4.0.4",
4
4
  capabilities: {
5
5
  resources: {},
6
6
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-kubernetes",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "MCP server for interacting with Kubernetes clusters via kubectl",
5
5
  "license": "MIT",
6
6
  "type": "module",