MongoDB Builder Blog
Deep dives into technical concepts, architectures, and innovations with MongoDB.
How We Used AI to Bring MongoDB to DynamoDB
Amazon has a history of favoring customer choice, and ExtendDB is another signal of that: an open source, pluggable adapter built specifically so DynamoDB workloads can run in more environments. At MongoDB, we also believe that everything starts with serving the customer well, so we work backwards from there. This is why we built a MongoDB storage backend for ExtendDB, AWS's open source DynamoDB-compatible adapter, which is ready for use today.
August 24, 2026
Builder Blog
Build a Fraud Review Agent with MongoDB Atlas and Claude Managed Agents
Claude Managed Agents lets you run Anthropic's Claude as a fully hosted agent, without standing up your own inference or orchestration infrastructure. Pairing Claude Managed Agents with MongoDB Atlas gives your agents fast, secure access to operational and vector data right where it lives, so you can ship agentic workflows without gluing together separate retrieval and hosting layers.
MongoDB VFS for LangChain Deep Agents: A Searchable Filesystem for Agents
Modern AI agents are no longer expected to answer a question alone. They're expected to complete real work: plan a multi-step task, inspect source material, produce intermediate artifacts, and hand off pieces of the problem to other agents, compressing work that used to take days into hours. That shift raises the bar on what an agent needs underneath it. An agent can only plan and execute at that speed if it can reliably navigate, search, read, and update the filesystem it's working with along the way.
MongoDB Atlas Joins Google Cloud Foundation Fabric (FAST): Secure Private Data Infrastructure in Minutes
Transitioning from on-premises infrastructure to the cloud can be challenging. Many organizations lack a clear understanding of cloud fundamentals, and establishing a foundational environment is often complex and time-consuming. For every enterprise in particular, security is a critical priority and must be robustly implemented from the outset. Additionally, for new teams building applications, the initial setup presents significant difficulties, as they may not have clear guidance on the precise steps required to create a secure and reliable cloud environment.
Agent Observability: Monitoring Decisions, Not Requests
Observability is the practice of making a system’s internal behavior legible from the outside—capturing enough signal that an engineer can reconstruct what happened and why. For a web service, that signal is the request: a status code, a latency number, a stack trace when something throws. For an agent, the unit of behavior is a decision: the choice it makes between one call and the next. The agent reads context, chooses an action, calls a tool or a model, observes the result, and chooses again.
How We Used AI to Bring MongoDB to DynamoDB
Amazon has a history of favoring customer choice, and ExtendDB is another signal of that: an open source, pluggable adapter built specifically so DynamoDB workloads can run in more environments. At MongoDB, we also believe that everything starts with serving the customer well, so we work backwards from there. This is why we built a MongoDB storage backend for ExtendDB, AWS's open source DynamoDB-compatible adapter, which is ready for use today.
Building E-commerce AI Agents on MongoDB with CrewAI
AI-powered shopping agents are becoming a real differentiator for e-commerce teams. A 2026 Stord report on AI in e-commerce revealed a 34% year-over-year increase in the number of consumers who reported using generative AI for online shopping. The trend is even more pronounced among younger consumers: 37% of Gen Z and 29% of Millennials actively use AI to shop online. After seeing how the agentic commerce journey actually works, it's not hard to understand why.
Agent Memory Inside the Harness
Four posts on this blog have already covered what agent memory is: the memory hierarchy[1], why multi-agent systems need memory engineering[2], how to build a memory-augmented agent[3], and how to give one long-term memory with LangGraph[4]. This post takes the layer beneath them. It is about what memory becomes once it has to run in production—compacted alongside tool schemas and reasoning traces when the context window overflows, versioned and governed like any other production artifact, fed from enterprise systems no one is going to migrate, and access-controlled down to the individual unit.
How Palo Alto Networks Built a Zero-Downtime, Multi-Region SASE Health Portal with MongoDB Atlas
This guest blog post is from Kunal Kannav, Principal Site Reliability Engineer for Palo Alto Networks—a global cybersecurity leader delivering best-of-breed platforms, world-class threat intelligence and expert services to deliver what’s next in cybersecurity.
Agent Orchestration and Tool Use: The Machinery Underneath
The MongoDB blog has made the case for bounded autonomy1, and cataloged the design patterns that produce safe agents2. Earlier entries in this series introduced the harness, the layer of code and configuration around the model that determines whether an agent works in production. A recent formal definition of the agent harness3 names four elements: an agent loop, a tool interface, context management, and control mechanisms. The control mechanisms are where the concerns in this post live. This entry covers the layer those design patterns sit on top of—the runtime loop itself, and the machinery that determines whether the loop survives contact with production. Framework, harness, orchestration, and platform name four distinct layers, and this post is about the third. Architects and platform builders evaluating that layer will find four questions at the end for auditing an existing one.