send-notification
Send Markdown-formatted notifications to Microsoft Teams channels using a simple interface to keep users informed and engaged with structured messages.
Instructions
Send a notification message to the user. Supports markdown formatting for messages. Use backticks for code blocks and inline code. Use square brackets for placeholders.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | ||
project | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"type": "string"
},
"project": {
"type": "string"
}
},
"required": [
"message",
"project"
],
"type": "object"
}