function isZodObject()

in src/utils/zodToMCPSchema.ts [14:20]


function isZodObject(schema: z.ZodTypeAny): schema is z.ZodObject<any> {
  // Check both instanceof and the typeName property
  return (
    schema instanceof z.ZodObject ||
    (schema?._def?.typeName === 'ZodObject')
  );
}