os_notification
Send system-level notifications directly from the MCP Tools interface. Display custom messages and titles using native OS notification systems for real-time alerts and updates.
Instructions
Send OS notifications using native notification systems.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The notification message to display | |
title | No | Defaults to current project, generally omit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "The notification message to display",
"minLength": 1,
"type": "string"
},
"title": {
"description": "Defaults to current project, generally omit",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}