SYSTEM Cited by 1 source
Agentic Inbox¶
Agentic Inbox (github.com/cloudflare/agentic-inbox) is Cloudflare's open-source reference application for building an email-client-plus-agent on the Workers developer platform — launched 2026-04-16 alongside the Email Service public-beta graduation.
"A reference application with full conversation threading, email rendering, receiving and storing emails and their attachments, and automatically replying to emails. It includes a dedicated MCP server built-in, so external agents can draft emails for your review before sending from your agentic-inbox" (Source: sources/2026-04-16-cloudflare-email-service-public-beta-ready-for-agents).
Role¶
Not a Cloudflare product. A starter template — Deploy-to-Cloudflare button, fork-and-extend shape — that demonstrates the canonical agent-email pipeline end-to-end on first-party Cloudflare primitives.
"Rather than every team rebuilding the same inbound-classify-reply pipeline, start with this reference application. Fork it, extend it, use it as a starting point for your own email agents that fit your workflows" (Source: sources/2026-04-16-cloudflare-email-service-public-beta-ready-for-agents).
Stack¶
| Layer | Substrate |
|---|---|
| Inbound | Email Routing |
| Outbound | Email Sending |
| Classification / auto-reply | Workers AI |
| Attachments | R2 |
| Stateful agent logic | Agents SDK + Durable Objects |
| External-agent draft surface | Built-in MCP server |
| Host runtime | Workers |
Canonical wiki instance of patterns/inbound-classify-persist-reply-pipeline.
Human-in-the-loop via built-in MCP¶
During private beta, Cloudflare found "you often want to keep the human-in-the-loop element to review emails and see what the agent is doing" (Source: sources/2026-04-16-cloudflare-email-service-public-beta-ready-for-agents).
Agentic Inbox ships its own dedicated MCP server so external agents (Claude Code, Cursor, Copilot, other MCP-aware clients) can draft emails into the inbox for human review before the human clicks Send — the email-tier equivalent of Agent Lee's elicitation gate on the dashboard tier. The review UI is a fully featured email client, so the gate fits inside the user's existing workflow rather than a dedicated approval dashboard.
Shape in the 2026-04 Cloudflare launch cluster¶
Fifth instance (with Agent Lee, Project Think, AI Search, and Artifacts) of the 2026-04 "dogfood the platform as a customer-facing product" recurring shape on the Cloudflare blog — a first-party reference application built on the same primitives customers have access to, with the architecture packaged as something customers can fork.
Seen in¶
- sources/2026-04-16-cloudflare-email-service-public-beta-ready-for-agents — launch announcement.
Related¶
- systems/cloudflare-email-service — the primitive Agentic Inbox demonstrates.
- systems/cloudflare-agents-sdk — stateful-agent layer.
- systems/cloudflare-durable-objects — per-mailbox / per-agent instance substrate.
- systems/workers-ai — classification.
- systems/cloudflare-r2 — attachment store.
- systems/model-context-protocol — built-in MCP server for external-agent drafts.
- patterns/inbound-classify-persist-reply-pipeline — canonical pipeline pattern.
- patterns/signed-reply-routing-header — secure reply routing pattern the Agents SDK layers on.
- concepts/email-as-agent-interface / concepts/address-based-agent-routing / concepts/asynchronous-reply-email — concepts this app exemplifies.
- companies/cloudflare — parent org.