Key Takeaways
- Agentic Inbox (github.com/cloudflare/agentic-inbox) is a free, open-source self-hosted email client with a built-in AI agent β a web app you deploy, not a desktop download
- Built and published by Cloudflare; repository created April 10, 2026
- Apache 2.0 licensed, confirmed via the GitHub repository's LICENSE file
- Runs entirely on your own Cloudflare account: Workers for compute, Durable Objects (with SQLite) per mailbox, R2 for attachment storage, Email Routing for receiving mail
- The AI agent is powered by Cloudflare Workers AI (
@cf/moonshotai/kimi-k2.5at the time of this review), a cloud-hosted model β not a locally run or user-swappable model by default - Over 7,800 GitHub stars and roughly 1,000 forks as of this review
π In One Sentence
Agentic Inbox is a free, open-source (Apache 2.0) self-hosted email client built by Cloudflare, deployed to your own Cloudflare account, that pairs a full email interface with an AI agent powered by Cloudflare Workers AI.
π¬ In Plain Terms
Agentic Inbox is not something you install on your laptop β it is a web app you deploy into your own Cloudflare account (a few clicks with the "Deploy to Cloudflare" button), which then handles your email and gives you a side-panel AI assistant that can read, search, and draft replies for you. The AI part runs on Cloudflare's own AI service, not a model you download and run yourself.
πNote: This review is based on Agentic Inbox's own GitHub repository, README, and architecture documentation. It does not claim PromptQuorum has deployed and load-tested a production instance, and it does not describe Agentic Inbox as a local-inference tool β its default AI agent depends on Cloudflare's Workers AI cloud service, not hardware you own.
What Is Agentic Inbox?
Agentic Inbox is a self-hosted email client with a built-in AI agent, published by Cloudflare and designed to run entirely on your own Cloudflare account rather than a shared, multi-tenant SaaS service. Its own GitHub description calls it "a self-hosted email client with an AI agent, running entirely on Cloudflare Workers."
- Product type: a self-hosted web application, deployed via a "Deploy to Cloudflare" button or the Wrangler CLI β not a downloadable desktop or mobile app
- Publisher: Cloudflare, Inc. β this is an official Cloudflare open-source project, not a third-party clone of the same idea
- Repository: cloudflare/agentic-inbox on GitHub, created April 10, 2026
- License: Apache 2.0, confirmed via the repository's LICENSE file
- Scale: over 7,800 GitHub stars, roughly 1,000 forks, and 48 open issues as of this review
- Infrastructure: Cloudflare Workers (compute), Durable Objects with SQLite (per-mailbox state), R2 (attachment storage), and Cloudflare Email Routing (inbound mail) β all inside the account you deploy to
Project History
Agentic Inbox's GitHub repository was created on April 10, 2026, published directly by Cloudflare alongside a blog post β "Email for Agents" β explaining how the project demonstrates Cloudflare's Email Routing, Agents SDK, and MCP working together.
- April 2026 β repository created and published by Cloudflare, alongside the "Email for Agents" blog post introducing the concept
- The project has no tagged GitHub releases as of this review; Cloudflare ships it via continuous updates to the main branch rather than versioned release tags
- The most recent commit push recorded by GitHub's API was April 23, 2026, several months before this review's publish date β check the repository's commit history directly for the current activity level before assuming active weekly development
What Can You Do With Agentic Inbox?
Agentic Inbox's feature set combines a conventional email client with an AI side panel. Here is what each part actually does, per the project's own README.
- Full email client β send and receive email through Cloudflare Email Routing, with a rich-text composer, reply/forward threading, folder organization, search, and attachment handling
- Per-mailbox isolation β each mailbox you create runs in its own Durable Object with its own SQLite database, and attachments are stored in Cloudflare R2
- Built-in AI agent β a side panel exposing nine email tools for reading, searching, drafting, and sending, built with the Cloudflare Agents SDK (
AIChatAgent) and AI SDK v6 - Auto-draft on new email β the agent automatically reads inbound emails and generates a draft reply, but per the README it always requires explicit human confirmation before actually sending anything
- Configurable, persistent agent behavior β custom system prompts per mailbox, persistent chat history, streaming markdown responses, and visibility into the agent's tool calls
- MCP server at
/mcpβ exposes Agentic Inbox's mailbox tools to external AI clients (the README names Claude Code and Cursor as examples) that can pass amailboxIdparameter to operate on a specific mailbox over the Model Context Protocol
Usage Examples: Three Ways to Use Agentic Inbox
These are concrete workflows built from Agentic Inbox's documented features above β not hypothetical use cases.
Deploy Agentic Inbox
Agentic Inbox is not downloaded as an app β it is deployed as source code into your own Cloudflare account. It requires a Cloudflare account with a domain, Email Routing and Email Service enabled, and Workers AI and Cloudflare Access configured for production use.
Source | Link |
|---|---|
| GitHub repository (source code, Apache 2.0) | github.com/cloudflare/agentic-inbox |
| One-click deploy | Deploy to Cloudflare |
| Local development | npm install && npm run dev (per the repository README) |
| Manual deploy (after local setup) | npm run deploy (Wrangler CLI, per the repository README) |
| Background reading | Email for Agents (Cloudflare blog) |
Clicking "Deploy to Cloudflare" is only the first step β the README is explicit that you must also complete the "After deploying" steps (Cloudflare Access configuration, Email Routing setup, and enabling the Email Service and Workers AI products) before the app is usable in production. There is no offline, self-hosted-on-your-own-server deployment path documented β it targets Cloudflare's platform specifically.
Pricing and Licensing
Agentic Inbox itself is free and open source, with no license fee β the GitHub repository's LICENSE file applies the Apache License, Version 2.0, without modification. Your actual cost comes from the Cloudflare products it depends on, not from Agentic Inbox itself.
- No subscription, license fee, or usage cap imposed by Agentic Inbox's own code
- Running it costs whatever your Cloudflare account tier and product usage costs: Workers, Durable Objects, R2 storage, Email Routing, and Workers AI usage all bill according to Cloudflare's own, separately published pricing
- Apache 2.0 is a permissive license: no copyleft obligation to release your own modifications, and commercial use is explicitly permitted
- This review did not find a published estimate of typical monthly Cloudflare cost for running Agentic Inbox β check Cloudflare's own current Workers, Durable Objects, R2, and Workers AI pricing pages before deploying, since usage-based costs depend entirely on your mail volume and AI agent usage
Agentic Inbox vs. Nanobot
Agentic Inbox and nanobot are both free, open-source, self-hosted personal AI agents, but they target different jobs and different deployment models. Agentic Inbox is purpose-built for email; nanobot is a general-purpose personal agent with chat-app integrations and persistent memory.
Primary job
- Agentic Inbox:
- Email client + email-specific AI agent
- Nanobot:
- General-purpose personal AI agent
Deployment
- Agentic Inbox:
- Your own Cloudflare account only
- Nanobot:
- Self-hosted on your own machine or server
AI backend
- Agentic Inbox:
- Cloudflare Workers AI by default
- Nanobot:
- Connects to Ollama, vLLM, or the OpenAI API
Local-model option
- Agentic Inbox:
- None documented
- Nanobot:
- Yes, via Ollama or vLLM backends
MCP support
- Agentic Inbox:
- Yes, exposes mailbox tools at
/mcp - Nanobot:
- Yes, consumes MCP tools
Publisher
- Agentic Inbox:
- Cloudflare, Inc.
- Nanobot:
- HKUDS (open-source community project)
If you specifically want your AI agent to run against a model you choose yourself, including a locally hosted one, nanobot's backend flexibility is the closer fit. If your priority is email specifically, backed by Cloudflare's managed infrastructure, Agentic Inbox is purpose-built for that job. See the nanobot review for details.
Who Should Use Agentic Inbox?
Whether Agentic Inbox fits depends on whether you already use Cloudflare, want email specifically (not a general agent), and are comfortable with a cloud-hosted AI backend rather than a local model.
Competitors and Alternatives
Agentic Inbox sits in the self-hosted personal-AI-agent segment alongside nanobot, Khoj, Multica, and Second Me β tools that pair an AI agent with a web interface you deploy and control yourself, rather than a closed SaaS assistant.
nanobot
- Best known for:
- Self-hosted personal AI agent with persistent memory, MCP tools, and Ollama/vLLM backends
- Link:
- nanobot review
Articles about nanobot (2)
- Nanobot Review: A Self-Hosted AI Agent Framework in 2026Updated September 20, 2026
- Agentic Inbox Review: A Self-Hosted Email Client With an AI AgentUpdated September 19, 2026
Khoj
- Best known for:
- Self-hosted personal assistant combining document chat (RAG) with agent features
- Link:
- Khoj review
Articles about Khoj (2)
- Khoj Review 2026: Self-Hosted AI Second Brain, No Cloud LeftUpdated September 2, 2026
- Vane Review 2026: Self-Hosted AI Answering Engine (Formerly Perplexica)Updated September 14, 2026
Also mentioned in:
- Agentic Inbox Review: A Self-Hosted Email Client With an AI AgentUpdated September 19, 2026
- Sidekick Review 2026: A Free, Native macOS Local AI Chat AppUpdated September 19, 2026
- Surf Review 2026: Deta's Open-Source AI NotebookUpdated September 19, 2026
- SiYuan Review 2026: The Privacy-First, Block-Based Knowledge BaseUpdated September 18, 2026
- Hyperlink (Nexa AI) Review 2026: On-Device File SearchUpdated September 12, 2026
- Odysseus Review 2026: The Self-Hosted AI WorkspaceUpdated September 12, 2026
- AnythingLLM Review: Open-Source RAG and Document ChatUpdated September 11, 2026
- Quivr Review 2026: Is the Open-Source "Second Brain" Still Alive?Updated September 2, 2026
Multica
- Best known for:
- Self-hosted autonomous agent framework with web, desktop, and CLI interfaces
- Link:
- Multica review
Second Me
- Best known for:
- Self-hosted personal AI built around fine-tuning a model on your own data
- Link:
- Second Me review
Articles about Second Me (1)
- Second Me Review 2026: Train Your Own Personal AI LocallyUpdated September 3, 2026
Also mentioned in:
- Agentic Inbox Review: A Self-Hosted Email Client With an AI AgentUpdated September 19, 2026
- LLaMA-Factory Review 2026: Fine-Tune 100+ LLMs via Web UIUpdated September 14, 2026
This list reflects tools commonly compared to Agentic Inbox in the self-hosted personal-agent segment, not an independent PromptQuorum ranking β verify each tool's current deployment requirements and AI-backend options before choosing.
Common Mistakes When Evaluating Agentic Inbox
Most confusion about Agentic Inbox comes from assuming "self-hosted" means fully local inference, or missing its mailbox-authorization limitation.
Frequently Asked Questions
What is Agentic Inbox?
Agentic Inbox (github.com/cloudflare/agentic-inbox) is a free, open-source (Apache 2.0) self-hosted email client built by Cloudflare, deployed to your own Cloudflare account, with a built-in AI agent for reading, searching, and drafting replies.
Is Agentic Inbox free?
Yes, Agentic Inbox itself is free and open source with no license fee. Your actual cost is whatever your Cloudflare account tier and product usage (Workers, Durable Objects, R2, Email Routing, Workers AI) costs.
Does Agentic Inbox run AI models locally on my own hardware?
No. Its built-in AI agent is powered by Cloudflare Workers AI, a cloud model-serving product, not a model that runs on your own computer or server. "Self-hosted" here refers to owning the Cloudflare account and infrastructure, not local inference.
How do I deploy Agentic Inbox?
Click the "Deploy to Cloudflare" button in the project's README, supply your domain, and let Cloudflare provision R2, Durable Objects, and Workers AI. You must then complete the README's "After deploying" steps: configuring Cloudflare Access and Email Routing before the app is production-ready.
Can multiple people safely share one Agentic Inbox deployment?
Only if they should all be able to read every mailbox. The README states any user who passes the shared Cloudflare Access policy can access all mailboxes, including via the MCP server β there is no per-mailbox authorization layer.
Does Agentic Inbox support MCP?
Yes. It exposes an MCP server at /mcp, letting external AI tools such as Claude Code or Cursor operate on a specific mailbox by passing a mailboxId parameter, subject to the same account-wide Cloudflare Access trust boundary.
Who develops Agentic Inbox?
Cloudflare, Inc. publishes and maintains Agentic Inbox directly, alongside its "Email for Agents" blog post explaining the underlying Email Routing, Agents SDK, and MCP integration.
Does the AI agent send emails automatically?
No. The agent auto-generates draft replies when new mail arrives, but per the README, sending always requires explicit human confirmation first.
What license does Agentic Inbox use?
Apache License, Version 2.0, confirmed via the GitHub repository's LICENSE file β a permissive license with no copyleft obligation and explicit permission for commercial use.
Can I run Agentic Inbox outside Cloudflare, on my own server?
This review found no documented path to deploy Agentic Inbox outside Cloudflare Workers β it is built specifically around Cloudflare's Workers, Durable Objects, R2, and Email Routing products.