Convenience for a single text result.
factory CallToolResult.text(String text, {bool? isError}) => CallToolResult( content: [ {'type': 'text', 'text': text}, ], isError: isError, );