UNPKG

@mseep/apisix-mcp

Version:

[![smithery badge](https://smithery.ai/badge/@api7/apisix-mcp)](https://smithery.ai/server/@api7/apisix-mcp)

9 lines (8 loc) 250 B
import { z } from "zod"; export const ProtoSchema = z.object({ content: z.string().describe("proto content"), }); export const CreateOrUpdateProtoSchema = z.object({ id: z.string().optional().describe("proto id"), proto: ProtoSchema, });