Postfleet MCP
Postfleet MCP
Dale a un agente de IA su propia dirección de correo electrónico. Postfleet es infraestructura de correo electrónico para agentes: el correo entrante se analiza, clasifica, extrae según tu esquema y se filtra contra inyección de prompts antes de que tu agente lea una palabra.
Este repositorio contiene el código fuente del servidor y sus manifiestos de plugins. Es un espejo — el código se desarrolla en el repositorio de la aplicación Postfleet y se publica en npm como @postfleet/mcp; abre incidencias aquí, envía parches aquí, y llegarán al repositorio principal. El servidor se distribuye de dos maneras:
Alojado (sin instalación) |
|
Local (stdio) |
|
Obtén una clave API pf_ en postfleet.ai.
Herramientas
list_mailboxes, create_mailbox, list_domains, send_email, reply_email, list_inbox, read_email, wait_for_email — además del ciclo de vida de borradores (create_draft, list_drafts, get_draft, update_draft, send_draft, delete_draft) para flujos donde un humano aprueba antes de que se envíe el correo. Un envío que llega a esa compuerta devuelve 202 pending_approval, que no es un fallo.
Cada herramienta es una capa delgada sobre REST — llama a los mismos endpoints /api/v1/ a los que tu clave ya accede (OpenAPI), por lo que la autenticación, el alcance y las cuotas se aplican una sola vez.
Related MCP server: IMAP Email MCP Server
Instalación
Cursor
El manifiesto en este repositorio declara ambos transportes. Para configurarlo manualmente, añade tu clave:
{
"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/mcpCualquier cliente stdio
{
"mcpServers": {
"postfleet": {
"command": "npx",
"args": ["-y", "@postfleet/mcp"],
"env": { "POSTFLEET_API_KEY": "pf_your_key_here" }
}
}
}POSTFLEET_API_URL (por defecto https://api.postfleet.ai) anula el origen de la API para entornos de prueba o implementaciones autogestionadas.
Claves
Las claves tienen alcance — bootstrap solo puede crear buzones, api cubre operaciones de correo, mcp es la que se entrega a un cliente. Usa una clave separada por carga de trabajo para poder revocar una sin afectar al resto. Nunca confirmes una clave; los manifiestos en este repositorio no contienen ninguna deliberadamente.
Enlaces
Listado en el registro:
ai.postfleet/postfleeten el Registro MCPnpm:
@postfleet/mcpDocumentación: postfleet.ai/docs/mcp
Compilar desde el código fuente
npm install && npm run build # tsup → dist/Licencia 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