A plain { field: z.string() } record accepted by the deprecated raw-shape form of registerAppTool; the SDK auto-wraps it with z.object().
{ field: z.string() }
registerAppTool
z.object()
Wrap with z.object({...}) instead.
z.object({...})
A plain
{ field: z.string() }record accepted by the deprecated raw-shape form ofregisterAppTool; the SDK auto-wraps it withz.object().