/** * `CustomMcpRecipe` — the declarative definition of a registered external * MCP server (Agentic Studio custom MCP). */ import { z } from "zod"; export declare const CustomMcpRecipeSchema: z.ZodObject<{ name: z.ZodString; url: z.ZodString; }, z.core.$strip>; /** A validated custom-MCP recipe. */ export type CustomMcpRecipe = z.infer;