configure_email_server
Manually configure advanced email server settings, including SMTP and IMAP details, for customizing email account management on the Email MCP Server.
Instructions
手动配置邮箱服务器设置(高级用户使用)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imapHost | No | IMAP服务器地址 | |
imapPort | No | IMAP端口 | |
imapSecure | No | 是否使用SSL | |
password | Yes | 邮箱密码或授权码 | |
smtpHost | No | SMTP服务器地址 | |
smtpPort | No | SMTP端口 | |
smtpSecure | No | 是否使用SSL | |
user | Yes | 邮箱账号 |
Input Schema (JSON Schema)
{
"properties": {
"imapHost": {
"description": "IMAP服务器地址",
"type": "string"
},
"imapPort": {
"description": "IMAP端口",
"type": "number"
},
"imapSecure": {
"description": "是否使用SSL",
"type": "boolean"
},
"password": {
"description": "邮箱密码或授权码",
"type": "string"
},
"smtpHost": {
"description": "SMTP服务器地址",
"type": "string"
},
"smtpPort": {
"description": "SMTP端口",
"type": "number"
},
"smtpSecure": {
"description": "是否使用SSL",
"type": "boolean"
},
"user": {
"description": "邮箱账号",
"type": "string"
}
},
"required": [
"user",
"password"
],
"type": "object"
}