UNPKG

mcp-server-kubernetes

Version:

MCP server for interacting with Kubernetes clusters via kubectl

9 lines (8 loc) 225 B
import { z } from "zod"; export const HelmResponseSchema = z.object({ content: z.array(z.object({ type: z.literal("text"), text: z.string(), })), }); export const HelmValuesSchema = z.record(z.any());