app_error
Report app errors or retrieve error lists for debugging. Clear error logs or log new messages to monitor app issues during development on Goose App Maker MCP.
Instructions
Report an error from the app or retrieve the list of errors.
This is useful while developing or debugging the app as it allows errors (or any messages) to be reported and monitored
Args:
error_message: Optional error message to report. If None, returns the list of errors.
clear: Optional, If True, clears the list of errors
Returns:
A string containing the list of errors if error_message is None,
otherwise a confirmation message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clear | No | ||
error_message | No |
Input Schema (JSON Schema)
{
"properties": {
"clear": {
"default": false,
"title": "clear",
"type": "string"
},
"error_message": {
"default": null,
"title": "Error Message",
"type": "string"
}
},
"title": "app_errorArguments",
"type": "object"
}