AgentSend — Email for AI Agents
Give your AI agent its own @agentsend.io email address. Send, receive, and manage full email conversations — no OAuth, no human verification flow.
Setup
- 1. Get a free API key at agentsend.io/auth/signup
- Add it to your MCP config:
CODEBLOCK0
The server will not start without a valid AGENTSEND_API_KEY. Signup is free and instant.
Tools
| Tool | What it does |
|---|
| INLINECODE2 | Create a new @agentsend.io inbox with an optional prefix and display name |
| INLINECODE4 |
List all your inboxes with addresses, IDs, and stats |
|
send_email | Send an email (plain text or HTML). Supports CC and thread replies |
|
list_emails | List recent emails in an inbox. Filter by read/unread status |
|
get_email | Fetch the full body, headers, and attachment metadata of any email |
|
list_threads | List conversation threads — replies are auto-grouped by RFC 5322 headers |
|
get_thread | Get every message in a thread in chronological order |
|
register_webhook | Register a URL you own to receive real-time event notifications (HMAC-signed payloads) |
Example
CODEBLOCK1
Pricing
| Plan | Price | Inboxes | Emails/month |
|---|
| Free | $0 | 3 | 3,000 |
| Pro |
$9/mo | 5 | 5,000 + custom domains |
| Enterprise | $99/mo | 100 | 100,000 |
Source code: github.com/luv005/agentpost
技能名称: agentsend-email
详细描述:
AgentSend — 面向AI智能体的邮件服务
为您的AI智能体分配一个专属的@agentsend.io邮箱地址。支持发送、接收和管理完整的邮件对话——无需OAuth认证,无需人工验证流程。
配置步骤
- 1. 在agentsend.io/auth/signup免费获取API密钥
- 将其添加到您的MCP配置中:
json
{
mcpServers: {
agentsend: {
command: npx,
args: [@agentsend/mcp],
env: {
AGENTSENDAPIKEY: your-api-key
}
}
}
}
未提供有效的AGENTSENDAPIKEY时,服务器将无法启动。注册免费且即时生效。
工具列表
| 工具 | 功能说明 |
|---|
| createinbox | 创建新的@agentsend.io收件箱,支持设置可选前缀和显示名称 |
| listinboxes |
列出所有收件箱,包含地址、ID和统计数据 |
| send_email | 发送邮件(纯文本或HTML格式),支持抄送和回复线程 |
| list_emails | 查看收件箱中的最近邮件,可按已读/未读状态筛选 |
| get_email | 获取任意邮件的完整正文、头部信息和附件元数据 |
| list_threads | 列出对话线程——回复内容会根据RFC 5322头部自动分组 |
| get_thread | 按时间顺序获取线程中的每一条消息 |
| register_webhook | 注册您拥有的URL,用于接收实时事件通知(HMAC签名负载) |
使用示例
用户:创建一个收件箱并向test@example.com发送问候
→ create_inbox({ displayName: 我的智能体 })
已创建:agent-k7x2@agentsend.io
→ send_email({ inboxId: ..., to: [test@example.com],
subject: 你好!, bodyText: 由AI发送。 })
已加入发送队列 ✓
定价方案
| 方案 | 价格 | 收件箱数量 | 每月邮件量 |
|---|
| 免费版 | $0 | 3 | 3,000 |
| 专业版 |
$9/月 | 5 | 5,000 + 自定义域名 |
| 企业版 | $99/月 | 100 | 100,000 |
源代码:github.com/luv005/agentpost