SMTP MCP Server

update-smtp-config

Update an existing SMTP configuration

Input Schema

NameRequiredDescriptionDefault
hostNoSMTP host
idYesID of the SMTP configuration to update
isDefaultNoWhether this configuration should be the default
nameNoName of the SMTP configuration
passNoSMTP password
portNoSMTP port
secureNoWhether to use secure connection (SSL/TLS)
userNoSMTP username

Input Schema (JSON Schema)

{ "properties": { "host": { "description": "SMTP host", "type": "string" }, "id": { "description": "ID of the SMTP configuration to update", "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": [ "id" ], "type": "object" }