AI Learning
beginner ⏱️ 8 min read · 🎬 ~1 min video

Introducing Claude Managed Agents

Claude Managed Agents is a suite of composable APIs for building and deploying agents at scale. Out of the box: native MCP, tool integrations, memory, and all infrastructure needed to run production agents.

This lesson is original educational writing based on this video by Anthropic (published April 8, 2026). All credit for the original content goes to the creators.

#agents #managed-agents #api
Video thumbnail: Introducing Claude Managed Agents
Original video β€” all credit to the creators. Watch the original on YouTube β†—

1. What Claude Managed Agents is β€” and why it exists

Building an agent on top of a raw language model API sounds straightforward until you try to do it at production scale. You add tool calling, then you need to persist memory across sessions, then you need to spin up multiple agents and have them coordinate, then you need somewhere to store intermediate state, then you need to handle retries and errors gracefully. Before long you have built a substantial platform just to support your actual product. Claude Managed Agents is that platform, built by Anthropic so you do not have to build it yourself.

The conceptual jump from the Claude API to Managed Agents is the jump from model-as-library to model-as-runtime. When you call the raw /messages endpoint you are sending a stateless request and getting a stateless response. The API knows nothing about the previous turn unless you re-send the entire conversation history yourself. Managed Agents, by contrast, maintains sessions, threads, memory, and all the orchestration logic across the full lifetime of an agent task. You define what the agent should do and what it has access to; Managed Agents handles the rest.

This distinction matters most for teams that are not trying to build developer tooling or research prototypes. If your product is an agent β€” if you are shipping something to end users that autonomously does meaningful work on their behalf β€” you need this layer. Rebuilding it from scratch takes months and introduces reliability risks in every corner you cut.

2. The four pillars of Managed Agents

Claude Managed Agentsplatform layerNative MCPmodel context protocolMemorypersist across sessionsTool Integrationsweb, code, filesOrchestrationmulti-agent coordinationClaude API (base layer β€” stateless model calls)
Claude Managed Agents provides four integrated capabilities on top of the base Claude API, forming the infrastructure layer for production agent products.

Native MCP (Model Context Protocol) is built into Managed Agents at the infrastructure level. MCP is Anthropic’s open standard for connecting agents to external systems β€” think of it as a universal adapter between an agent and any data source or tool. With raw API usage you have to implement MCP client logic yourself. Managed Agents ships with this integrated, so connecting your agent to a filesystem, database, or external API is a configuration step, not an engineering project.

Memory is the capability that most distinguishes agents from one-shot completions. An agent that cannot remember what it did yesterday is an agent that cannot complete multi-day tasks, cannot learn user preferences, and cannot resume interrupted work. Managed Agents provides memory stores β€” both short-term working memory within a session and longer-term persistent memory across sessions β€” as a managed service. You do not need to design the storage schema, manage embeddings, or handle cache invalidation.

Tool integrations come pre-built. Web search, code execution, file reading, browser interaction β€” these are the tools most agent products need, and they require significant sandboxing and safety work to run securely. Managed Agents handles that hosting and security so you can give your agent tools without building the execution environment yourself.

Orchestration means multi-agent coordination is a first-class feature, not an afterthought. Real production agent tasks are often too large or too parallelizable for a single agent to handle well. Managed Agents lets you define agent hierarchies β€” an orchestrator that delegates to specialized subagents β€” and handles the communication, state sharing, and result aggregation between them.

3. Who it is for and when to reach for it

The target audience for Managed Agents is product teams at companies that want to ship agent-powered features without building the infrastructure from scratch. Think of a company like Notion wanting to embed a Claude delegate inside their workspace, or a developer tools company wanting to ship an automated code review product. These teams know what they want to build; they do not want to spend engineering cycles reinventing session management and memory stores.

There are three natural options when building with Claude, and each has its place. The raw Claude API is best for stateless tasks β€” classify this text, generate this draft, answer this question β€” where you do not need persistence or multi-step autonomy. Claude Code is best for developer-facing agentic work, especially coding tasks where a CLI or VS Code integration makes sense. Claude Managed Agents is best when you are building a production agent product that will be used by people who are not developers, or where the agent needs to do long-running work across multiple sessions with persistent memory and tool access.

Check your understanding

4 questions Β· your answers are saved in this browser only

  1. 1. What is the primary problem Claude Managed Agents solves compared to using the raw Claude API?

  2. 2. Which of the following is NOT one of the four core capabilities provided out-of-the-box by Claude Managed Agents?

  3. 3. When should you choose the raw Claude API over Claude Managed Agents?

  4. 4. What does 'orchestration' mean in the context of Claude Managed Agents?

Build it yourself

Follow these exact steps to reproduce it yourself

  1. Sign up for access β€” Managed Agents launched in private alpha in April 2026. Check console.anthropic.com for current access and waitlist options.
  2. Define your agent’s scope β€” Write down the task your agent will complete, the tools it needs (web search? file access? code execution?), and whether it needs multi-session memory.
  3. Identify your orchestration pattern β€” Does one agent handle everything, or do you need an orchestrator that delegates to specialized subagents? Sketch the agent hierarchy before writing code.
  4. Configure MCP connections β€” List the external systems your agent needs to talk to (databases, APIs, file systems). Each connection becomes an MCP server configuration.
  5. Define memory requirements β€” Decide what information needs to persist across sessions (user preferences, task history, domain knowledge) versus what is ephemeral working memory within a session.
  6. Build a minimal version first β€” Start with a single agent, one or two tools, and no persistent memory. Get that working end-to-end before adding orchestration and memory layers.
  7. Add monitoring β€” Production agents fail in unexpected ways. Instrument your agent sessions with logging from the start so you can debug failures and improve task success rates.

Related lessons

intermediate 🎬 Anthropic · ~29 min

Get to Production Faster with Claude Managed Agents

Why building a production-ready agent is harder than it looks, and how Claude Managed Agents handles the infrastructure layer so you can focus on what actually makes your agent valuable.

#agents #managed-agents #production #agentic-workflows
intermediate 🎬 Anthropic · ~27 min

Build a Production-Ready Agent with Claude Managed Agents

A hands-on walkthrough of Claude Managed Agents: defining agents and environments, creating sessions, streaming events, using outcomes for iterative self-verification, and monitoring live runs in the developer console.

#agents #api #production
intermediate 🎬 Anthropic · ~4 min

What is Claude Managed Agents?

Claude Managed Agents is a suite of APIs for building production-ready agents. You define the tools, environments, and success criteria. Claude works until the job is done. Outcomes, multi-agent orchestration, memory, computer use.

#agents #managed-agents #architecture