Initial commit of Stalwart MCP Server

This commit is contained in:
2026-06-06 08:14:23 +02:00
commit e667786d02
4014 changed files with 927294 additions and 0 deletions

26
stalwart_send_email.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "stalwart_send_email",
"description": "Send a new email.",
"parameters": {
"type": "object",
"properties": {
"to": {
"type": "string",
"description": "Recipient email address."
},
"subject": {
"type": "string",
"description": "Subject of the email."
},
"textBody": {
"type": "string",
"description": "Plain text body of the email."
},
"htmlBody": {
"type": "string",
"description": "Optional HTML body of the email."
}
},
"required": ["to", "subject", "textBody"]
}
}