send_notification
Send notifications to Discord or Slack via webhooks, including messages, embeds, and attachments, with automatic service detection, retry logic, and secure input validation.
Instructions
Send a notification to Discord and/or Slack webhooks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
avatar_url | No | ||
embed_json | No | ||
message | No | ||
service | No | ||
tts | No | ||
username | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"avatar_url": {
"format": "uri",
"type": "string"
},
"embed_json": {
"anyOf": [
{
"type": "string"
},
{
"additionalProperties": true,
"properties": {},
"type": "object"
},
{
"items": {},
"type": "array"
}
]
},
"message": {
"type": "string"
},
"service": {
"enum": [
"discord",
"slack",
"both"
],
"type": "string"
},
"tts": {
"type": "boolean"
},
"username": {
"type": "string"
}
},
"type": "object"
}