Email Sender MCP Server
Enables sending emails through Gmail's SMTP server, supporting single and multiple recipients, HTML content, attachments, CC, and BCC functionality.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Email Sender MCP Serversend a meeting reminder to team@company.com with agenda attached"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
📧 邮件发送 MCP 服务器
基于 email_sender.py 工具类构建的邮件发送 MCP 服务器,支持通过 Model Context Protocol 发送邮件。
✨ 功能特性
✅ 发送简单邮件(单个收件人)
✅ 发送完整邮件(支持多个收件人、附件、CC、BCC)
✅ 支持纯文本和 HTML 格式
✅ 支持自定义 SMTP 配置
✅ 支持常用邮箱预设配置(163、QQ、Gmail、Outlook等)
✅ 从环境变量读取配置
Related MCP server: Email MCP Server
🚀 快速开始
1. 安装依赖
uv sync2. 配置环境变量
创建 .env 文件或设置环境变量:
# SMTP 服务器配置
export SMTP_SERVER=smtp.qq.com
export SMTP_PORT=587
export SENDER_EMAIL=your-email@qq.com
export SENDER_PASSWORD=your-authorization-code
export USE_TLS=true
export USE_SSL=false3. 在 Cursor 中配置 MCP 服务器
在 Cursor 的设置中添加 MCP 服务器配置:
{
"mcpServers": {
"email-sender": {
"command": "uv",
"args": [
"--directory",
"/Users/wangyichao/study/mcp/emailMCP",
"run",
"main.py"
],
"env": {
"SMTP_SERVER": "smtp.qq.com",
"SMTP_PORT": "587",
"SENDER_EMAIL": "your-email@qq.com",
"SENDER_PASSWORD": "your-authorization-code",
"USE_TLS": "true",
"USE_SSL": "false"
}
}
}
}📋 可用工具
1. send_simple_email - 发送简单邮件
发送单个收件人的简单邮件。
参数:
receiver_email(str): 收件人邮箱地址subject(str): 邮件主题content(str): 邮件内容content_type(str, 可选): 内容类型,'plain' 或 'html',默认为 'plain'
示例:
send_simple_email(
receiver_email="recipient@example.com",
subject="测试邮件",
content="这是一封测试邮件",
content_type="plain"
)2. send_email - 发送完整邮件
发送支持多个收件人、附件、CC、BCC 的完整邮件。
参数:
receiver_emails(List[str]): 收件人邮箱地址列表subject(str): 邮件主题content(str): 邮件内容content_type(str, 可选): 内容类型,'plain' 或 'html',默认为 'plain'attachments(List[str], 可选): 附件文件路径列表cc_emails(List[str], 可选): 抄送邮箱地址列表bcc_emails(List[str], 可选): 密送邮箱地址列表
示例:
send_email(
receiver_emails=["user1@example.com", "user2@example.com"],
subject="重要通知",
content="<h1>这是HTML邮件</h1><p>内容支持HTML格式</p>",
content_type="html",
cc_emails=["cc@example.com"],
attachments=["/path/to/file.pdf"]
)3. send_email_with_custom_config - 使用自定义配置发送
使用自定义 SMTP 配置发送邮件,不依赖环境变量。
参数:
receiver_emails(List[str]): 收件人邮箱地址列表subject(str): 邮件主题content(str): 邮件内容smtp_server(str): SMTP服务器地址smtp_port(int): SMTP端口sender_email(str): 发件人邮箱sender_password(str): 发件人密码或授权码content_type(str, 可选): 内容类型,默认为 'plain'use_tls(bool, 可选): 是否使用TLS,默认为 Falseuse_ssl(bool, 可选): 是否使用SSL,默认为 Falseattachments(List[str], 可选): 附件文件路径列表cc_emails(List[str], 可选): 抄送邮箱地址列表bcc_emails(List[str], 可选): 密送邮箱地址列表
4. get_smtp_configs - 获取常用邮箱配置
获取常用邮箱的 SMTP 配置信息。
返回: JSON 格式的配置信息
5. get_current_config - 获取当前配置
获取当前使用的 SMTP 配置(从环境变量读取)。
返回: JSON 格式的配置信息(密码已隐藏)
📝 常用邮箱配置
QQ 邮箱
SMTP_SERVER=smtp.qq.com
SMTP_PORT=587
USE_TLS=true
USE_SSL=false或使用 SSL:
SMTP_SERVER=smtp.qq.com
SMTP_PORT=465
USE_TLS=false
USE_SSL=true注意: 需要使用授权码,不是登录密码。在 QQ 邮箱设置中开启 SMTP 服务并生成授权码。
163 邮箱
SMTP_SERVER=smtp.163.com
SMTP_PORT=25
USE_TLS=false
USE_SSL=false或使用 SSL:
SMTP_SERVER=smtp.163.com
SMTP_PORT=465
USE_TLS=false
USE_SSL=trueGmail
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=587
USE_TLS=true
USE_SSL=false注意: Gmail 需要使用应用专用密码,不是普通密码。
Outlook
SMTP_SERVER=smtp-mail.outlook.com
SMTP_PORT=587
USE_TLS=true
USE_SSL=false🔧 本地测试
直接运行服务器进行测试:
uv run main.py📚 相关文件
email_sender.py: 邮件发送工具类main.py: MCP 服务器主文件pyproject.toml: 项目配置文件
⚠️ 注意事项
密码安全: 不要在代码中硬编码密码,使用环境变量或配置文件
授权码: 大多数邮箱服务商需要使用授权码而不是登录密码
端口选择:
端口 25: 通常不需要加密(可能被某些网络阻止)
端口 587: 使用 STARTTLS(推荐)
端口 465: 使用 SSL/TLS
附件路径: 附件文件路径必须是绝对路径或相对于工作目录的路径
🐛 故障排除
认证失败
检查邮箱和密码/授权码是否正确
确认是否使用了授权码而不是登录密码
检查 SMTP 服务是否已开启
连接失败
检查 SMTP 服务器地址和端口是否正确
确认网络连接正常
检查防火墙设置
发送失败
检查收件人邮箱地址格式是否正确
确认附件文件路径存在且可读
查看错误信息中的详细提示
📄 许可证
MIT License
Available Tools
5 toolsget_current_configB
获取当前使用的SMTP配置(从环境变量读取)
Returns: 当前配置信息
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states that the configuration is read from environment variables, which is useful context. However, it doesn't describe the return format, potential errors (e.g., if environment variables are missing), or any side effects. For a read operation with zero annotation coverage, this is insufficient, as it leaves key behavioral aspects unspecified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: the first sentence clearly states the purpose, and the second briefly notes the return. There's no wasted text, and it's appropriately sized for a simple tool. However, the structure could be slightly improved by integrating the return note more seamlessly, but it's still efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, output schema exists), the description is somewhat complete but has gaps. It explains what the tool does and the data source (environment variables), but lacks usage guidelines and behavioral details like error handling. The presence of an output schema means it doesn't need to explain return values, but other contextual elements are missing, making it adequate but not fully helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and the input schema has 100% description coverage (though empty). The description doesn't need to add parameter semantics, so a baseline of 4 is appropriate. It implicitly confirms there are no required inputs by not mentioning any, which aligns with the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '获取当前使用的SMTP配置(从环境变量读取)' (Get the currently used SMTP configuration, read from environment variables). It specifies both the verb ('获取' - get) and resource ('SMTP配置' - SMTP configuration), and distinguishes itself from siblings like 'get_smtp_configs' by focusing on the 'current' configuration from environment variables. However, it doesn't explicitly contrast with all siblings, keeping it at 4 rather than 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to use it over 'get_smtp_configs' (which might retrieve multiple or all configurations) or in relation to the email-sending siblings. There's no context about prerequisites, such as needing environment variables set, or exclusions. This lack of usage guidance is a clear gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_smtp_configsB
获取常用邮箱的SMTP配置信息
Returns: 常用邮箱SMTP配置信息(JSON格式)
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool returns SMTP configuration information in JSON format, which is useful. However, it doesn't disclose critical behavioral traits such as whether this is a read-only operation (implied but not stated), potential rate limits, authentication requirements, or what specific 'common email services' are included. The description adds some value but leaves significant gaps for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: the first sentence states the purpose clearly, and the second specifies the return format. There's no wasted text, and both sentences earn their place by providing essential information. However, it could be slightly more structured (e.g., separating purpose and returns more distinctly), but it's efficient overall.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (0 parameters, no annotations, but has an output schema), the description is minimally adequate. It states what the tool does and the return format, which is helpful since an output schema exists (so return values needn't be explained). However, it lacks context on usage, behavioral details, and sibling differentiation, making it incomplete for optimal agent guidance. It meets the minimum viable threshold but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and the input schema has 100% description coverage (though empty). The description doesn't need to add parameter semantics since there are none. It appropriately doesn't discuss parameters, so it meets the baseline for a zero-parameter tool. No additional compensation is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '获取常用邮箱的SMTP配置信息' (Get SMTP configuration information for common email services). It specifies both the verb (get) and resource (SMTP configurations), though it doesn't explicitly differentiate from sibling tools like 'get_current_config' which might retrieve different configuration types. The purpose is clear but lacks sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There are sibling tools like 'send_email' and 'send_email_with_custom_config' that might relate to SMTP usage, but the description doesn't mention when this configuration retrieval is needed (e.g., before sending emails, for setup purposes) or when to choose other tools. No explicit or implied usage context is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_emailB
发送完整邮件(支持多个收件人、附件、CC、BCC)
Args: receiver_emails: 收件人邮箱地址列表 subject: 邮件主题 content: 邮件内容(纯文本或HTML) content_type: 内容类型,'plain' 表示纯文本,'html' 表示HTML格式 attachments: 附件文件路径列表(可选) cc_emails: 抄送邮箱地址列表(可选) bcc_emails: 密送邮箱地址列表(可选)
Returns: 发送结果信息
| Name | Required | Description | Default |
|---|---|---|---|
| receiver_emails | Yes | ||
| subject | Yes | ||
| content | Yes | ||
| content_type | No | plain | |
| attachments | No | ||
| cc_emails | No | ||
| bcc_emails | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool sends emails but doesn't mention authentication requirements, rate limits, error conditions, whether it's synchronous/asynchronous, or what constitutes '发送结果信息' (sending result information). For a mutation tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with a purpose statement followed by categorized parameter documentation. Every sentence serves a purpose. The bilingual nature (Chinese purpose, English parameter names) is slightly inconsistent but doesn't significantly impact utility.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 7-parameter mutation tool with no annotations, the description covers basic functionality and parameters adequately. However, it lacks behavioral context (auth, errors, limits) and doesn't leverage the output schema to explain return values. Given the complexity and zero annotation coverage, it should provide more operational guidance.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description compensates well by documenting all 7 parameters in Chinese with clear explanations. It specifies which are optional, provides content_type enum values ('plain' vs 'html'), and clarifies parameter purposes. However, it doesn't explain format details like attachment path requirements or email address validation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '发送完整邮件(支持多个收件人、附件、CC、BCC)' which translates to 'Send complete email (supports multiple recipients, attachments, CC, BCC)'. This specifies the verb ('send') and resource ('complete email') with feature highlights. However, it doesn't explicitly differentiate from sibling tools like 'send_simple_email' or 'send_email_with_custom_config'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus its siblings ('send_simple_email', 'send_email_with_custom_config'). There's no mention of prerequisites, alternative scenarios, or comparative context. The agent must infer usage from the tool name and parameter list alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_email_with_custom_configB
使用自定义SMTP配置发送邮件
Args: receiver_emails: 收件人邮箱地址列表 subject: 邮件主题 content: 邮件内容 smtp_server: SMTP服务器地址(如:smtp.qq.com, smtp.gmail.com) smtp_port: SMTP端口(25/465/587) sender_email: 发件人邮箱 sender_password: 发件人密码或授权码 content_type: 内容类型,'plain' 或 'html' use_tls: 是否使用TLS(端口587通常需要) use_ssl: 是否使用SSL(端口465通常需要) attachments: 附件文件路径列表(可选) cc_emails: 抄送邮箱地址列表(可选) bcc_emails: 密送邮箱地址列表(可选)
Returns: 发送结果信息
| Name | Required | Description | Default |
|---|---|---|---|
| receiver_emails | Yes | ||
| subject | Yes | ||
| content | Yes | ||
| smtp_server | Yes | ||
| smtp_port | Yes | ||
| sender_email | Yes | ||
| sender_password | Yes | ||
| content_type | No | plain | |
| use_tls | No | ||
| use_ssl | No | ||
| attachments | No | ||
| cc_emails | No | ||
| bcc_emails | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. While it mentions the action (sending email) and lists parameters, it doesn't describe important behavioral aspects like error handling, rate limits, authentication requirements beyond password, what happens with attachments, or whether this is a synchronous/blocking operation. The description is functional but lacks critical operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (Args, Returns) and uses bullet-like formatting, but it's quite lengthy due to documenting 13 parameters. While each parameter explanation earns its place given the 0% schema coverage, the overall description could be more front-loaded with critical usage information before the detailed parameter list.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex 13-parameter tool with no annotations and 0% schema coverage, the description does an adequate job documenting parameters but lacks important contextual information. While it has an output schema (mentioned in Returns), the description doesn't provide behavioral context about authentication, error conditions, or how this tool differs from its siblings. The parameter documentation is strong, but overall completeness is limited by missing operational guidance.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description provides comprehensive parameter documentation that fully compensates. Each parameter is clearly explained with examples (e.g., 'smtp.qq.com, smtp.gmail.com'), port guidance ('25/465/587'), content type options ('plain' or 'html'), and practical advice about TLS/SSL usage with specific ports. Optional parameters are clearly marked, and the parameter explanations add significant value beyond what the bare schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('使用自定义SMTP配置发送邮件' - send email with custom SMTP configuration), which distinguishes it from sibling tools like 'send_email' and 'send_simple_email' that presumably use default configurations. The verb+resource combination is precise and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus the sibling tools like 'send_email' or 'send_simple_email'. It doesn't mention prerequisites, alternative scenarios, or any context that would help an agent choose between this and other email-sending tools on the server.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_simple_emailB
发送简单邮件(单个收件人,无附件)
Args: receiver_email: 收件人邮箱地址 subject: 邮件主题 content: 邮件内容(纯文本或HTML) content_type: 内容类型,'plain' 表示纯文本,'html' 表示HTML格式
Returns: 发送结果信息
| Name | Required | Description | Default |
|---|---|---|---|
| receiver_email | Yes | ||
| subject | Yes | ||
| content | Yes | ||
| content_type | No | plain |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool sends emails but does not mention any behavioral traits such as authentication requirements, rate limits, error handling, or whether it's a synchronous operation. The description lacks critical details needed for safe and effective use, especially for a mutation tool with potential side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded: the first sentence states the core purpose, followed by a structured 'Args' and 'Returns' section. Every sentence earns its place by providing essential information without redundancy, making it easy to scan and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a mutation tool with 4 parameters), no annotations, and an output schema present (implied by 'Returns: 发送结果信息'), the description is moderately complete. It covers the purpose and parameters well but lacks behavioral context like permissions or error handling. The output schema likely details return values, so the description doesn't need to explain those, but overall gaps remain for safe usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds significant meaning beyond the schema by explaining each parameter's purpose in Chinese: 'receiver_email' as '收件人邮箱地址' (recipient email address), 'subject' as '邮件主题' (email subject), 'content' as '邮件内容(纯文本或HTML)' (email content, plain text or HTML), and 'content_type' with enum values 'plain' and 'html'. This clarifies semantics effectively, though it doesn't cover format details like email validation or content length limits.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '发送简单邮件(单个收件人,无附件)' which translates to 'Send simple email (single recipient, no attachments)'. This specifies the verb ('send'), resource ('email'), and key constraints ('simple', 'single recipient', 'no attachments'). It distinguishes from sibling tools like 'send_email' and 'send_email_with_custom_config' by emphasizing simplicity and limitations, though it doesn't explicitly name those alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context through the constraints '单个收件人,无附件' (single recipient, no attachments), suggesting this tool is for basic email needs. However, it does not explicitly state when to use this tool versus alternatives like 'send_email' or 'send_email_with_custom_config', nor does it provide any exclusions or prerequisites. The guidance is implied rather than direct.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.1.0- First observed
get_current_config - First observed
get_smtp_configs - First observed
send_email - First observed
send_email_with_custom_config - First observed
send_simple_email
TDQS
Most tools have distinct purposes, but send_email and send_simple_email overlap significantly in functionality. send_simple_email is essentially a subset of send_email, which could lead to confusion about when to use each. The configuration tools (get_current_config, get_smtp_configs) and custom config tool (send_email_with_custom_config) are clearly differentiated.
All tool names follow a consistent verb_noun pattern with snake_case, making them predictable and readable. The naming convention is uniform across all five tools, with clear action verbs (get, send) followed by descriptive nouns.
Five tools is well-scoped for an email sending server, covering configuration retrieval, standard email sending, simple email sending, and custom configuration sending. Each tool serves a distinct purpose without unnecessary duplication or bloat.
The toolset covers core email sending workflows comprehensively, including configuration management and flexible sending options. A minor gap exists in lacking tools for managing sent emails (e.g., list_sent_emails, delete_email) or handling email templates, but agents can still accomplish basic email tasks effectively.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Send transactional emails for AI agents via SMTP. Templates included.
Send transactional email over a verified domain — templates, attachments, custom headers.
Send, track, and manage transactional and bulk email delivery
Email for AI agents: send mail, manage contacts, automations & webhooks. Zero-DNS first send.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables sending emails via SMTP with template management, supporting multiple SMTP configurations, template creation with variable substitution, and bulk email sending with rate limiting.623419MIT
- AlicenseNot gradedqualityDmaintenanceEnables sending emails through SMTP using nodemailer, allowing AI assistants to send plain text and HTML emails with configurable SMTP credentials.482ISC
- AlicenseNot gradedqualityDmaintenanceEnables sending emails through 126 mailbox SMTP service with support for plain text/HTML content, CC/BCC recipients, and secure SSL/TLS connections.33ISC
- AlicenseNot gradedqualityCmaintenanceEnables sending and receiving emails through SMTP, IMAP, and POP3 protocols with support for attachments, HTML content, and email validation.MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wyccywwyc/emailMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server