SMTP MCP Server

add-smtp-config

Add a new SMTP configuration

Input Schema

NameRequiredDescriptionDefault
hostYesSMTP host
isDefaultNoWhether this configuration should be the default
nameYesName of the SMTP configuration
passYesSMTP password
portYesSMTP port
secureNoWhether to use secure connection (SSL/TLS)
userYesSMTP username

Input Schema (JSON Schema)

{ "properties": { "host": { "description": "SMTP host", "type": "string" }, "isDefault": { "description": "Whether this configuration should be the default", "type": "boolean" }, "name": { "description": "Name of the SMTP configuration", "type": "string" }, "pass": { "description": "SMTP password", "type": "string" }, "port": { "description": "SMTP port", "type": "number" }, "secure": { "description": "Whether to use secure connection (SSL/TLS)", "type": "boolean" }, "user": { "description": "SMTP username", "type": "string" } }, "required": [ "name", "host", "port", "user", "pass" ], "type": "object" }