export function jsonTextContent(value: unknown): { content: Array<{ type: 'text'; text: string }> } { return { content: [ { type: 'text', text: JSON.stringify(value, null, 2), }, ], }; }