send_notification
ActiveTool of clawshow
Send notifications via email, SMS, or WhatsApp to one or multiple recipients. Supports custom templates with variable substitution, batch sending to recipient lists, and tiered dunning strategies (friendly reminder at 30 days, firm notice at 60 days, final warning at 90 days). Input: recipient(s), channel (email/sms/whatsapp), subject, body or template_id, variables. Output: delivery status report. Ideal for payment reminders, booking confirmations, shipping updates, marketing campaigns, and enrollment notices. Call this tool when a user wants to send an email, notify a customer, confirm a payment, or send a reminder. Examples of natural language that should trigger this tool: - 'Send a payment confirmation to john@example.com for €850' - 'Email the tenant that rent is due on April 5th' - 'Notify the guest their booking at Paris Apt is confirmed' - 'Envoie un email de confirmation de réservation' Args: to: Recipient email(s) — string or list of strings subject: Email subject line body: Email body text (plain text or HTML) from_name: Sender display name, default "ClawShow" reply_to: Optional reply-to address template: Template name: "payment_confirmation", "payment_reminder", "booking_confirmation", "custom" template_vars: Variables for the template, e.g. {"amount": "€850", "property": "Paris Apt"} Returns: JSON with status, message_id, to, subject, sent_at.
Parameters schema
{
"type": "object",
"title": "send_notificationArguments",
"required": [
"to",
"subject",
"body"
],
"properties": {
"to": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"title": "To"
},
"body": {
"type": "string",
"title": "Body"
},
"subject": {
"type": "string",
"title": "Subject"
},
"reply_to": {
"type": "string",
"title": "Reply To",
"default": ""
},
"template": {
"type": "string",
"title": "Template",
"default": "custom"
},
"from_name": {
"type": "string",
"title": "From Name",
"default": "ClawShow"
},
"template_vars": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Template Vars",
"default": null
}
}
}Parent server
clawshow
https://github.com/jason2016/clawshow-mcp-server
2/7 registries