MCP Email Service
Allows sending individual and mass emails, querying email details, updating scheduled emails, and canceling scheduled emails via the Resend API.
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., "@MCP Email Service给email@example.com发一封主题为请假的邮件,内容为我今天发烧,请求请假一天,望批准,并抄送email2@example.com"
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邮件服务
该仓库是基于MCP协议和resend开发的发送邮件的服务,可以使用该服务进行发送邮件,包括群发,并且可以通过邮件id查询邮件,更新延迟发送的邮件,以及取消延迟发送的邮件(This repository is a mail-sending service developed based on the MCP protocol and Resend. It can be used to send emails, including mass emails. Additionally, it allows querying emails by ID, updating delayed emails, and canceling delayed emails.)
可以做什么(What can it do)
以下参数中,cc、bcc和to_eamil_list为list类型,其他参数为string类型(Among the following parameters, cc, bcc, and to_email_list are of list type, while other parameters are of string type)
发送邮件(Send emails) - 发送单封邮件(Send single email)
必要参数(Required parameters):
收件人(Recipient):
to_email主题(Subject):
subject内容(Content):
body
可选参数(Optional parameters):
抄送(CC):
cc密送(BCC):
bcc延迟发送(Delayed sending):
scheduled_at,格式为YYYY-MM-DDTHH:MM:SS.ssssssZ,例如2025-10-01T12:00:00.000000Z,表示在2023年10月1日12点发送邮件(Format isYYYY-MM-DDTHH:MM:SS.ssssssZ, for example,2025-10-01T12:00:00.000000Z, which means sending the email at 12 o'clock on October 1, 2025)
群发邮件(Mass email sending) - 发送多封邮件(Send multiple emails)
必要参数(Required parameters):
收件人列表(Recipient list):
to_email_list主题(Subject):
subject内容(Content):
body
可选参数(Optional parameters):
延迟发送(Delayed sending):
scheduled_at,格式为YYYY-MM-DDTHH:MM:SS.ssssssZ,例如2025-10-01T12:00:00.000000Z,表示在2023年10月1日12点发送邮件(Format isYYYY-MM-DDTHH:MM:SS.ssssssZ, for example,2025-10-01T12:00:00.000000Z, which means sending the email at 12 o'clock on October 1, 2025)
查询邮件(Email query) - 查询邮件详细信息(Query email details)
必要参数(Required parameters):
邮件ID(Email ID):
email_id
更新延迟发送的邮件(Update delayed emails) - 更新延迟发送的邮件(Update delayed emails)
必要参数(Required parameters):
邮件ID(Email ID):
email_id延迟发送时间(Delayed sending time):
scheduled_at,格式为YYYY-MM-DDTHH:MM:SS.ssssssZ,例如2025-10-01T12:00:00.000000Z,表示在2023年10月1日12点发送邮件(Format isYYYY-MM-DDTHH:MM:SS.ssssssZ, for example,2025-10-01T12:00:00.000000Z, which means sending the email at 12 o'clock on October 1, 2025)
取消延迟发送的邮件(Cancel delayed emails) - 取消延迟发送的邮件(Cancel delayed emails)
必要参数(Required parameters):
邮件ID(Email ID):
email_id
Related MCP server: Resend MCP
使用方法(Usage)
首先,将代码克隆到本地(First, clone the code to your local machine)
git clone https://github.com/Marary/mcp_server_email.git进入代码目录(Enter the code directory)
cd mcp_server_email安装依赖项(Install dependencies)
pip install -r requirements.txt修改MCP客户端的配置文件,我以cline为例,修改cline_mcp_settings.json文件,添加以下内容(Modify the MCP client configuration file. I will take cline as an example. Modify the cline_mcp_settings.json file and add the following content):
{
"mcpServers": {
"sendEmail": {
"disabled": false,
"timeout": 60,
"command": "python",
"args": [
"YOUR_FILE_PATH\\main.py",
"--api-key",
"YOUR_API_KEY",
"--domain",
"YOUR_DOMAIN",
],
"transportType": "stdio"
}
}
}上面的YOUR_FILE_PATH替换为你克隆的代码的路径(Replace YOUR_FILE_PATH with the path of the cloned code), YOUR_API_KEY替换为你在resend上申请的api_key(Replace YOUR_API_KEY with the api_key you applied for on resend), YOUR_DOMAIN替换为你在resend上申请的域名(Replace YOUR_DOMAIN with the domain name you applied for on resend).
resend的api_key和域名设置方法请参考resend的文档。
使用服务(Use the service)
配置好以上所有内容后,就可以使用服务了(After configuring all the above content, you can use the service).
示例(Example)
请你发送给email@example.com一封主题为请假的邮件,内容为某某某今天发烧了,不能正常工作,想要请假一天,望批准,并且帮我修饰一下辞藻,同时抄送给email2@example.com。(Please send an email to email@example.com with the subject "Leave Request". The content should state that someone is feverish today and unable to work normally, requesting a one-day leave, and hoping for approval. Also, please embellish the wording a bit and send a copy to email2@example.com.)
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/Marary/mcp_server_email'
If you have feedback or need assistance with the MCP directory API, please join our Discord server