Skip to main content
Glama
Thestral12

Postfleet MCP

by Thestral12

Postfleet MCP

为AI智能体提供专属邮箱地址。Postfleet 是面向智能体的邮件基础设施——在您的智能体读取邮件之前,系统会对入站邮件进行解析、分类、按您的模式提取数据,并筛查提示注入攻击。

此仓库包含服务端源代码及其插件清单。它是一个镜像——代码在 Postfleet 应用程序仓库中开发,并通过 npm 以 @postfleet/mcp 发布;请在此处提交 issue 和补丁,它们将同步到上游。服务端以两种方式部署:

托管版(无需安装)

https://api.postfleet.ai/api/mcp,支持流式 HTTP,Authorization: Bearer pf_...

本地版(stdio)

@postfleet/mcp,通过 npx 运行

postfleet.ai 获取 pf_ 开头的 API 密钥。

工具

list_mailboxescreate_mailboxlist_domainssend_emailreply_emaillist_inboxread_emailwait_for_email——以及用于需要人工审批后才能发送邮件的草稿生命周期管理(create_draftlist_draftsget_draftupdate_draftsend_draftdelete_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 是交给客户端的密钥。请为每个工作负载使用独立的密钥,以便在需要时可以单独撤销某个密钥而不影响其他服务。切勿将密钥提交到代码库;此仓库中的清单特意不包含任何密钥。

链接

从源码构建

npm install && npm run build   # tsup → dist/

采用 MIT 许可证。

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • -
    license
    C
    quality
    C
    maintenance
    Gives 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.to
    10
    85
  • A
    license
    A
    quality
    F
    maintenance
    Enables 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.
    10
    188
    9
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    Give AI agents their own email inboxes. Create, send, receive, and manage email entirely via MCP tools.

View all related MCP servers

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.

View all MCP Connectors

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/Thestral12/postfleet-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server