mcp-server-kubernetes
Version:
MCP server for interacting with Kubernetes clusters via kubectl
12 lines (11 loc) • 303 B
JavaScript
import { z } from "zod";
// Tool schemas
export const ToolSchema = z.object({
name: z.string(),
description: z.string(),
inputSchema: z.record(z.any()),
});
export const ListToolsResponseSchema = z.object({
tools: z.array(ToolSchema),
});
export const PingResponseSchema = z.object({});