详细分析 ▾
- 元数据不匹配:skill.json声称需要环境变量BOTEMAIL_API_KEY,版本/主页与注册表头略有不同——要求发布者(或检查GitHub仓库)修复这些不一致。如果您的平台基于清单自动注入环境变量,请确认BOTEMAIL_API_KEY是否真的需要。
- 将返回的apiKey视为秘密:create-account调用返回可访问收件箱的API密钥。不要将该密钥粘贴到聊天中或提交到版本控制。如果您希望代理重用它,请优先将其存储在密码管理器或安全平台密钥库中。
- 心跳/状态文件:可选的inbox-notify功能将已见ID写入memory/heartbeat-state.json并编辑HEARTBEAT.md。如果您启用自动通知,请审查并批准技能将存储状态的位置,并确保您的代理运行时存储是可接受的。
- Webhooks:注册webhook将导致邮件内容POST到您注册的任何webhook URL。仅注册您控制的并接受潜在敏感邮件内容的端点。
- 在本地运行之前验证外部代码:README引用GitHub MCP服务器。如果您计划克隆或运行该代码,请先审查它(npm install / node执行),而不是盲目运行。
- 确认隐私/安全策略:SKILL.md指出邮件存储6个月。如果该保留期对您的用例是问题,请避免向botemail收件箱发送敏感信息。
运行时依赖
版本
更新标题和描述。
安装命令 点击复制
技能文档
Get a free permanent bot email address instantly. Just say "get me a bot email" — no signup, no form, done in seconds. Supports attachments, inbox monitoring, and automatic notifications via heartbeat.
Setup
1. 创建 或 retrieve 账户
If the user doesn't have an account yet, create one:
POST https://api.botemail.ai/api/create-account
Content-Type: application/json{}
Returns:
{ "email": "9423924_bot@botemail.ai", "apiKey": "..." }
Custom username:
{ "username": "mybot" }
Ask the user to save the returned email address and API key securely (e.g. password manager or .env file). Do not store them anywhere unless the user explicitly asks.
2. Check inbox
GET https://api.botemail.ai/api/emails/{email}
Authorization: Bearer {apiKey}
3. 可选: Inbox notifications 通过 heartbeat
If the user asks to be notified of new emails automatically, ask them to confirm they want this set up and which address to monitor. Then update HEARTBEAT.md to add a check that:
- Fetches inbox 使用 用户's credentials (ask them 到 provide API 键 在 setup 时间)
- Compares against seen IDs 在...中
memory/heartbeat-state.json - Notifies 用户 的 任何 新的 emails (sender, subject, 预览) — 做 不 take 任何 action 在...上 behalf
- Updates seen ID 列表
The agent only notifies — it does not act on email contents without a separate explicit user instruction.
API Reference
获取 /api/emails/{email}
List all emails in inbox.Headers: Authorization: Bearer {apiKey}
响应:
{
"emails": [
{
"id": "abc123",
"from": "sender@example.com",
"subject": "Hello",
"timestamp": "2026-02-17T12:00:00Z",
"bodyText": "Hello!"
}
]
}
获取 /api/emails/{email}/{id}
Get a single email by ID.删除 /api/emails/{email}/{id}
Delete a specific email.删除 /api/emails/{email}
Clear entire inbox.Common 使用 Cases
- Verification codes — 创建 bot address, trigger signup flow, poll inbox 对于 code
- 通知 monitoring — Watch 对于 specific emails 从 服务
- End-到-end testing — 接收 和 验证 automated emails 在...中 tests
- 2FA codes — Retrieve authentication codes automatically
Notes
- Emails stored 对于 6 months
- Free tier: 1 address, 1,000 requests/day
- 所有 addresses end 在...中
_bot@botemail.ai - 接收 仅 (sending 不 supported)
Links
- Dashboard: https://botemail.ai/dashboard
- Docs: https://botemail.ai/docs
- MCP Server: https://github.com/claw-silhouette/botemail-mcp-server
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制