MCP Apps Kit - v0.5.0
    Preparing search index...

    Type Alias ZodRawShapeRecord

    ZodRawShapeRecord: Record<string, z.ZodType>

    A plain object where all values are Zod schemas. Used for inline schema syntax in defineTool.

    const shape: ZodRawShapeRecord = {
    name: z.string(),
    age: z.number().optional(),
    };