We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bradsjm/mail-smtp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# SMTP account: default
MAIL_SMTP_DEFAULT_HOST=smtp.example.com
MAIL_SMTP_DEFAULT_PORT=587
MAIL_SMTP_DEFAULT_SECURE=false
MAIL_SMTP_DEFAULT_USER=me@example.com
MAIL_SMTP_DEFAULT_PASS=app-password-or-token
MAIL_SMTP_DEFAULT_FROM=Me <me@example.com>
# SMTP account: work (optional additional account)
#MAIL_SMTP_WORK_HOST=smtp.work-example.com
#MAIL_SMTP_WORK_PORT=587
#MAIL_SMTP_WORK_SECURE=false
#MAIL_SMTP_WORK_USER=me@work-example.com
#MAIL_SMTP_WORK_PASS=app-password-or-token
#MAIL_SMTP_WORK_FROM=Me <me@work-example.com>
# Send gate (disabled by default)
MAIL_SMTP_SEND_ENABLED=false
# Recipient allowlists (optional)
#MAIL_SMTP_ALLOWLIST_DOMAINS=example.com,work-example.com
#MAIL_SMTP_ALLOWLIST_ADDRESSES=alice@example.com,bob@work-example.com
# Policy limits
MAIL_SMTP_MAX_RECIPIENTS=10
MAIL_SMTP_MAX_MESSAGE_BYTES=2500000
MAIL_SMTP_MAX_ATTACHMENT_BYTES=2000000
MAIL_SMTP_MAX_ATTACHMENTS=5
MAIL_SMTP_MAX_TEXT_CHARS=20000
MAIL_SMTP_MAX_HTML_CHARS=50000
# Timeouts (milliseconds)
MAIL_SMTP_CONNECT_TIMEOUT_MS=10000
MAIL_SMTP_SOCKET_TIMEOUT_MS=20000