Whatever message this page gives is out now! Go check it out!
content – a list of output blocks (text, JSON, or other supported types)isError – a boolean indicating success or failure
"result": {
"content": [
{
"type": "text",
"text": "Project PRJ-123 is on track with 80% completion."
}
],
"isError": false
}
"result": {
"content": [
{
"type": "json",
"json": {
"projectId": "PRJ-123",
"status": "on_track",
"completionPercent": 80
}
}
],
"isError": false
}
isError: true and provide diagnostic information.
"result": {
"content": [
{
"type": "text",
"text": "Invalid project ID: PRJ-XYZ. Project not found."
}
],
"isError": true
}
error_code, error_category, etc.), which agents can use to decide whether to retry, ask for clarification, or stop.