message_complete_notification
Signal the end of a response by notifying users once per message. Use this tool to confirm task completion, summarize actions, or mark the conclusion of a multi-step process. Ensures clarity and proper response closure.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Notification body | |
projectName | Yes | Notification title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "Notification body",
"type": "string"
},
"projectName": {
"description": "Notification title",
"type": "string"
}
},
"required": [
"projectName",
"message"
],
"type": "object"
}