mcp-server-kubernetes 1.3.0 → 1.3.1

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.
@@ -30,7 +30,7 @@ export async function createNamespace(k8sManager, input) {
30
30
  {
31
31
  type: "text",
32
32
  text: JSON.stringify({
33
- podName: response.body.metadata.name,
33
+ namespaceName: response.body.metadata.name,
34
34
  status: "created",
35
35
  }, null, 2),
36
36
  },
@@ -24,6 +24,7 @@ export declare const installHelmChartSchema: {
24
24
  values: {
25
25
  type: string;
26
26
  description: string;
27
+ properties: {};
27
28
  additionalProperties: boolean;
28
29
  };
29
30
  };
@@ -55,6 +56,7 @@ export declare const upgradeHelmChartSchema: {
55
56
  values: {
56
57
  type: string;
57
58
  description: string;
59
+ properties: {};
58
60
  additionalProperties: boolean;
59
61
  };
60
62
  };
@@ -26,6 +26,7 @@ export const installHelmChartSchema = {
26
26
  values: {
27
27
  type: "object",
28
28
  description: "Chart values",
29
+ properties: {},
29
30
  additionalProperties: true,
30
31
  },
31
32
  },
@@ -57,6 +58,7 @@ export const upgradeHelmChartSchema = {
57
58
  values: {
58
59
  type: "object",
59
60
  description: "Chart values",
61
+ properties: {},
60
62
  additionalProperties: true,
61
63
  },
62
64
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-kubernetes",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "MCP server for interacting with Kubernetes clusters via kubectl",
5
5
  "license": "MIT",
6
6
  "type": "module",