Postfleet MCP
Postfleet MCP
为AI智能体提供专属邮箱地址。Postfleet 是面向智能体的邮件基础设施——在您的智能体读取邮件之前,系统会对入站邮件进行解析、分类、按您的模式提取数据,并筛查提示注入攻击。
此仓库包含服务端源代码及其插件清单。它是一个镜像——代码在 Postfleet 应用程序仓库中开发,并通过 npm 以 @postfleet/mcp 发布;请在此处提交 issue 和补丁,它们将同步到上游。服务端以两种方式部署:
托管版(无需安装) |
|
本地版(stdio) |
|
在 postfleet.ai 获取 pf_ 开头的 API 密钥。
工具
list_mailboxes、create_mailbox、list_domains、send_email、reply_email、list_inbox、read_email、wait_for_email——以及用于需要人工审批后才能发送邮件的草稿生命周期管理(create_draft、list_drafts、get_draft、update_draft、send_draft、delete_draft)。进入审批流程的发送操作将返回 202 pending_approval 状态码,这并非错误。
每个工具都是对 REST API 的轻量封装——它们调用与您的密钥相同的 /api/v1/ 端点(OpenAPI),因此认证、权限范围和配额限制只需执行一次。
Related MCP server: IMAP Email MCP Server
安装
Cursor
此仓库中的清单已声明两种传输协议。要手动配置,请添加您的密钥:
{
"mcpServers": {
"postfleet": {
"url": "https://api.postfleet.ai/api/mcp",
"headers": { "Authorization": "Bearer pf_your_key_here" }
}
}
}Claude Code
claude mcp add postfleet --env POSTFLEET_API_KEY=pf_your_key_here -- npx -y @postfleet/mcp任意 stdio 客户端
{
"mcpServers": {
"postfleet": {
"command": "npx",
"args": ["-y", "@postfleet/mcp"],
"env": { "POSTFLEET_API_KEY": "pf_your_key_here" }
}
}
}POSTFLEET_API_URL(默认值 https://api.postfleet.ai)可用于覆盖 API 源地址,适用于预发布环境或自托管部署。
密钥
密钥具有作用域限制——bootstrap 仅能创建邮箱,api 覆盖邮件操作,mcp 是交给客户端的密钥。请为每个工作负载使用独立的密钥,以便在需要时可以单独撤销某个密钥而不影响其他服务。切勿将密钥提交到代码库;此仓库中的清单特意不包含任何密钥。
链接
注册列表:MCP 注册表上的
ai.postfleet/postfleetMCP Registrynpm:
@postfleet/mcp
从源码构建
npm install && npm run build # tsup → dist/采用 MIT 许可证。
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 Servers
- -licenseCqualityCmaintenanceGives on-the-fly inboxes to AI agents. Agents / LLM's can send, receive, and take action in isolated inboxes. Built for AI unlike Gmail. Check us out at agentmail.to1085
- AlicenseAqualityFmaintenanceEnables AI assistants to read, search, compose, and send emails by connecting to any IMAP/SMTP provider. It supports comprehensive mailbox management, including draft handling and message deletion, directly through natural language.101889MIT
- Alicense-qualityDmaintenanceEnables AI assistants to manage multiple email accounts with secure credentials, local full-text search, thread-aware replies, and automation.11MIT
- Flicense-qualityCmaintenanceGive AI agents their own email inboxes. Create, send, receive, and manage email entirely via MCP tools.
Related MCP Connectors
Email for AI agents — send, receive as a webhook, manage domains, templates, routing.
Authenticated email gateway for AI agents — per-agent inboxes, HITL approval, SPF/DKIM verified.
Authenticated email gateway for AI agents — per-agent inboxes, HITL approval, SPF/DKIM verified.
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/Thestral12/postfleet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server