kubeview-mcp 1.4.6 β†’ 1.4.7

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/CHANGELOG.md CHANGED
@@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.4.7] - 2025-12-03
11
+
12
+ ### Changed
13
+ - **Update README.md to enhance project description and add link to the article**
14
+
15
+
10
16
  ## [1.4.6] - 2025-11-30
11
17
 
12
18
  ### Changed
13
19
  - **Release v1.4.6**
14
20
 
15
-
16
21
  ## [1.4.5] - 2025-11-30
17
22
 
18
23
  ### Changed
package/README.md CHANGED
@@ -4,17 +4,18 @@
4
4
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org/)
5
5
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.8+-blue)](https://www.typescriptlang.org/)
6
6
 
7
- **KubeView** is a read-only Model Context Protocol (MCP) server that enables AI agents (like Cursor, Claude Desktop) to inspect, diagnose, and debug Kubernetes clusters safely. It provides a comprehensive set of tools for Kubernetes, Helm, Argo Workflows, and Argo CD.
7
+ **KubeView** is a read-only Model Context Protocol (MCP) server that enables AI agents (like Cursor IDE, Claude Code CLI, Codex CLI, Gemini CLI, etc.) to inspect, diagnose, and debug Kubernetes clusters safely. It provides a comprehensive set of tools for Kubernetes, Helm, Argo Workflows, and Argo CD.
8
+ Learn more about the benefits of code mode and implementation in [Evicting MCP tool calls from your Kubernetes cluster](https://dev.to/mikhae1/evicting-mcp-tool-calls-from-your-kubernetes-cluster-428k).
8
9
 
9
10
  ---
10
11
 
11
12
  ## ✨ Features
12
13
 
14
+ - **🧠 Code Mode**: Sandboxed TypeScript environment for complex reasoning and multi-step workflows.
13
15
  - **πŸ›‘οΈ Read-Only & Safe**: Designed for production safety with zero write access and sensitive data masking.
14
- - **☸️ Kubernetes Integration**: List/get resources, fetch metrics, stream logs, execute commands, and diagnose network issues.
16
+ - **☸️ Kubernetes Integration**: List/get resources, fetch metrics, stream logs and events, execute commands, and tools to diagnose network issues.
15
17
  - **πŸ“¦ Helm Support**: Inspect releases, values, manifests, and history.
16
18
  - **πŸ™ Argo Ecosystem**: Manage Argo Workflows and Argo CD applications.
17
- - **🧠 Code Mode**: Sandboxed TypeScript environment for complex reasoning and multi-step workflows.
18
19
 
19
20
  ---
20
21
 
@@ -148,4 +149,4 @@ npm run command -- kube_list --namespace=default
148
149
 
149
150
  ## πŸ“„ License
150
151
 
151
- MIT Β© [kubeview-mcp team](https://github.com/mikhae1/kubeview-mcp)
152
+ MIT Β© [mikhae1](https://github.com/mikhae1/kubeview-mcp)
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.4.6";
1
+ export declare const VERSION = "1.4.7";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
1
  // Auto-generated by scripts/build-release.js - DO NOT EDIT
2
- export const VERSION = '1.4.6';
2
+ export const VERSION = '1.4.7';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kubeview-mcp",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "Read-only MCP server enabling code-driven AI analysis of Kubernetes clusters",
5
5
  "mcpName": "io.github.mikhae1/kubeview",
6
6
  "main": "dist/src/index.js",
@@ -38,12 +38,12 @@
38
38
  "release:build": "npm run build",
39
39
  "release:version": "node scripts/update-version.js",
40
40
  "release": "npm run release:version && npm run release:qa && npm run release:build",
41
- "publish:commit": "git commit -m 'Release v$(node -p \"require('./package.json').version\")'",
42
- "publish:tag": "git tag v$(node -p \"require('./package.json').version\") && echo 'Tagged version v'$(node -p \"require('./package.json').version\")",
41
+ "publish:commit": "git commit -m 'Release v$(node -p \"require('./package.json').version\")' || echo 'Commit failed'",
42
+ "publish:tag": "VERSION=$(node -p \"require('./package.json').version\") && if git rev-parse \"v$VERSION\" >/dev/null 2>&1; then echo \"Tag v$VERSION already exists, skipping\"; else git tag \"v$VERSION\" && echo \"Tagged version v$VERSION\"; fi",
43
43
  "publish:npm": "npm publish",
44
44
  "publish:git": "git push origin master --tags",
45
45
  "publish:mcp": "mcp-publisher login github && mcp-publisher publish server.json",
46
- "publish": "npm run publish:commit && npm run publish:tag && npm run publish:npm && npm run publish:git && npm run publish:mcp"
46
+ "publish": "npm run publish:commit && npm run publish:npm && npm run publish:git && npm run publish:mcp"
47
47
  },
48
48
  "keywords": [
49
49
  "kubernetes",