Token导航 LogoToken导航TokenDH.com
Rmcp Mailer logo
AI代理stdio官方级别未说明来源级核验

Rmcp Mailer

MCP Server

基于Rust的MCP服务器,通过LLM聊天界面简化邮件发送过程。

工具数

0

提示词数

0

GitHub Stars

1

资源数

0
RustCursorAI代理Cursor

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

AlvinHon

提供方

AlvinHon

最后核验

2026/5/17 20:23

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

python -m aiosmtpd -n -l 127.0.0.1:2525

详细介绍

MCP个人邮件服务器

防锈MCP的示例项目(模型上下文协议)个人邮件服务器。它使用户能够发送电子邮件,只需向Cursor和Copilot等LLM聊天界面发出提示即可。

这是通过使用官方 锈sdk MCP(正在积极开发中)。 它主要使用板条箱 作为引擎盖下的SMTP客户端。

用法

本节描述了一些用例,以表明MCP服务器比传统的电子邮件程序更有趣。

传统的电子邮件程序要求用户知道如何向程序输入数据才能工作(例如发送电子邮件)。在这里,我们可以使用简单的单词,LLM将帮助我们创建输入数据,以便将其拟合到“程序”中。

示例1:

send an formal email to Bob (bob@domain.com). invite him to my friend Chris's wedding. closing with my name "Alvin"

Sample Output

LLM

Email sent successfully!

SMTP:

From: test@test.com
Subject: Invitation to Chris's Wedding
Content-Type: text/plain; charset=utf-8
To: bob@domain.com
Content-Transfer-Encoding: quoted-printable
Date: Sun, 18 May 2025 12:59:33 +0000
X-Peer: ('127.0.0.1', 58769)

Dear Bob,

I hope this message finds you well. I am writing to formally invite you to =
my friend Chris's wedding. It would be a pleasure to have you join us for t=
his special occasion.

Please let me know if you are able to attend.

Best regards,
Alvin

示例2:

add a email template named "greeting". It is a greeting to a new customer.

Sample Output

LLM

Email template created successfully!

模板:

Hello {customer_name},

Welcome to our service! We are excited to have you as a new customer.

Best regards,
The Team
send greeting email to customer "abc"

Sample Output

LLM

Email sent with template successfully!

SMTP:

From: test@test.com
Subject: Welcome to our service!
Content-Type: text/plain; charset=utf-8
To: abc@abc.com
Content-Transfer-Encoding: 7bit
Date: Sun, 18 May 2025 12:28:52 +0000
X-Peer: ('127.0.0.1', 58333)

Hello abc,

Welcome to our service! We are excited to have you as a new customer.

Best regards,
The Team

本地测试运行

本节介绍如何在本地运行MCP服务器以进行测试。

先决条件:

  • python模块 aiosmtpd 作为SMTP服务器
  • visual studio代码,使用github copilot作为LLM聊天界面和MCP客户端

请按照以下步骤操作:

  1. 运行SMTP服务器。
   python -m aiosmtpd -n -l 127.0.0.1:2525
  1. 跟随这个 指南 在VSCode中设置MCP代理。
  2. 单击文件中的“开始”按钮启动MCP代理 mcp.json 在VSCode中。
  3. 运行MCP服务器:
   cargo run

最后,尝试在聊天界面中键入提示,例如“发送电子邮件至you@domain.com主题为“测试”,身体为“你好世界”。

目录标签

目录标签

RustCursorAI代理邮件自动化本地部署LLM集成Rust开发SMTP客户端

支持客户端

Cursor

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP