Curo Blog

Claude Managed Agents: A Deep Dive into Anthropic's AI

July 29, 2026

Anthropic's Claude Managed Agents, launched in public beta on April 8, 2026, is a fully-managed infrastructure platform that simplifies the deployment of production-ready AI agents. It provides a hosted REST API where Anthropic runs the agent and its sandboxed environment, handling the complex plumbing of state management, tool orchestration, and error recovery. This allows developers to focus on designing powerful agent capabilities rather than managing the underlying infrastructure.

Understanding Claude Managed Agents

Claude Managed Agents represent a significant advancement in AI agent development, moving beyond the complexities of building and maintaining the underlying infrastructure. This service handles sandboxed execution, state management, credential handling, error recovery, context management, tool orchestration, and checkpointing.

Key Concepts in Managed Agents

Several core concepts define the Claude Managed Agents ecosystem:

  • Agent: This encompasses the model, system prompt, tools, MCP servers, and skills that define an agent's capabilities.
  • Environment: A configured container template that specifies necessary packages and network access for the agent.
  • Session: A running instance of an agent within an environment, dedicated to performing a specific task and generating outputs.
  • Events: Messages exchanged between your application and the agent, including user turns, tool results, and status updates.

Claude Managed Agents vs. OpenAI and SDKs

With the rapid pace of AI development, including the latest sdk update today for various platforms like OpenAI agents, it's crucial to understand where Anthropic's solutions fit. Claude offers two distinct paths for agent development: the Agent SDK and the fully-managed Managed Agents service.

The Agent SDK is a library that runs in your process on your own infrastructure. It's ideal for local prototyping and for agents that need to work directly with files and services on your local system. In contrast, Managed Agents are a hosted service. Anthropic provisions a managed sandbox for each session and handles all session state via a hosted event log. This is best for production agents, especially those performing long-running, asynchronous tasks that require robust cloud infrastructure.

OptionStrengthsBest forInfrastructure
Agent SDKRuns in your process, local file access, interactive developmentLocal prototyping, agents working directly on your filesystem and servicesYour own process and infrastructure
Managed AgentsAnthropic-managed infrastructure, REST API, managed sandbox per sessionProduction agents, long-running asynchronous sessions, complex tool useAnthropic's managed cloud

A common development path involves prototyping with the Agent SDK locally and then transitioning to Managed Agents for scalable production deployment.

Defining and Implementing Tools for Your Agent

An agent's true power comes from the tools it can use to interact with the world. Claude Managed Agents provide a flexible framework for defining these tools.

Built-in Tools

To get started quickly, the platform offers several pre-built tools that allow an agent to perform common tasks without custom configuration:

  • Bash: Execute shell commands within the secure sandbox.
  • File Operations: A full suite of commands for reading, writing, editing, globbing, and grepping files within the session's persistent file system.
  • Web Search & Fetch: Retrieve information from the web.

Custom and External Tools

For more specialized tasks, you can connect your agent to external tool providers through MCP servers. This allows you to extend your agent's capabilities to interact with proprietary APIs, databases, or any other external service, making the system highly extensible.

Getting Started and Creating Your First Session

To begin using Claude Managed Agents, you must meet a few prerequisites. After that, the process involves defining your agent and launching a session.

Prerequisites:

  1. Claude API Key: You need a valid Claude API key.
  2. Beta Header: All Managed Agents endpoints require the managed-agents-2026-04-01 beta header. The official SDK automatically sets this for you.
  3. Access: Access to Claude Managed Agents is enabled by default for all API accounts.

Once your environment is set up (e.g., export ANTHROPIC_API_KEY="your-api-key-here"), you can follow this workflow to launch your agent:

  1. Define an Agent Configuration: First, you create an agent configuration that specifies its model (e.g., Opus 4.6), system prompt, and the set of available tools.
  2. Spin up an Environment: Next, you define and create an Environment, which is the container template with all necessary packages and network access rules for your agent's task.
  3. Start a Session: With the Agent and Environment defined, you can start a Session. This creates a running instance of the agent within its secure, sandboxed environment.
  4. Exchange Events: You interact with the running session by sending and receiving events. Your application can send user messages or the results of tool calls, and it will receive streamed updates from the agent as it works.

Real-World Use Cases and Examples

Claude Managed Agents are already being used by leading companies to automate complex workflows and build advanced features.

  • Notion uses Claude to handle delegated work, enabling engineers to ship code and knowledge workers to generate websites and presentations.
  • Rakuten has deployed specialist agents across product, sales, and marketing, integrating them with Slack and Microsoft Teams. They report shipping each new specialist agent in about one week.
  • Asana builds "AI Teammates" with Managed Agents to collaborate with human users on tasks within Asana projects, significantly accelerating feature development.
  • Sentry employs a debugging agent paired with a patch-writing agent to automate the entire process from a bug flag to a reviewable pull request, cutting deployment timelines from months to weeks.
  • Vibecode leverages the platform to power AI-native app generation, resulting in a 10x faster infrastructure deployment for its end users.

Security Considerations

Security is a cornerstone of the Managed Agents platform. The service is designed to provide a secure environment for running autonomous agents, which is critical when these agents handle data and execute code.

The primary security feature is the managed sandbox. Each session runs in its own isolated container, preventing an agent from accessing data or systems outside its designated scope. This sandboxing is crucial for multi-tenant safety and for ensuring that one agent's tasks cannot interfere with another's. Furthermore, Anthropic manages the session state as a hosted, append-only event log, which provides a secure and auditable record of the agent's actions.

Managing Costs and Performance

Agentic workflows can multiply token usage through tool calls, retries, and planning steps, making cost management essential. The pricing for Managed Agents is $0.08 per session-hour plus standard token costs.

To control spending, you can implement several strategies:

  • Token Budgeting: Assign token budgets for different phases of an agent's task, such as planning, tool use, and verification.
  • Runtime Budgeting: Use concurrency controls to limit how many agents can run simultaneously.
  • Success-Based Accounting: Shift focus from "cost per run" to "cost per successful task" to better measure ROI.

A common source of unexpected costs is the agent "heartbeat," a periodic check to maintain task context, which can consume 8,000-15,000 tokens per request. Routing this heartbeat to cheaper, smaller models like Gemini 3 Flash or DeepSeek V3.2 can dramatically reduce idle costs. Similarly, using multi-model routing for different sub-tasks can save 50-80% on overall API costs.

Advanced Features and Research Previews

Claude Managed Agents also offer advanced capabilities and features currently in research preview.

Research Preview Features

Three key capabilities are in research preview, requiring access requests:

  • Multi-agent: This allows agents to spawn and direct sub-agents for parallel workloads, enabling complex, collaborative tasks.
  • Outcomes: Agents can self-evaluate and iterate until they meet defined success criteria, reducing the need for human verification.
  • Memory: Provides persistent memory across sessions, crucial for stateful, long-horizon agents.

The combination of outcomes and multi-agent coordination is particularly powerful, allowing Claude to both execute and validate its own work at scale.

Agent Teams

Agent teams extend the operator pattern by assembling specialized agents that collaborate persistently across ongoing workflows. Each agent has a defined role, scope, context, and toolset, functioning like a cross-functional team. An example is "Remy," a product manager agent that can scope projects, wire up authentication, build UIs, and run QA tests.

Operational Details and Limitations

Understanding the operational aspects of Claude Managed Agents is crucial for effective deployment.

Rate Limits

Managed Agents endpoints are subject to organization-level rate limits:

  • Create endpoints (agents, sessions, environments, etc.): 300 requests per minute.
  • Read endpoints (retrieve, list, stream, etc.): 600 requests per minute.

Standard organization-level spend limits and tier-based rate limits also apply.

Branding Guidelines

For partners integrating Claude Managed Agents, the use of Claude branding is optional. Similarly, for the Agent SDK, Claude branding is optional.

Frequently Asked Questions

What is the main benefit of Claude Managed Agents?

The main benefit is that Anthropic handles the entire infrastructure and operational burden of running AI agents, allowing developers to focus solely on designing what the agent does.

How does Claude Managed Agents compare to OpenAI's agent offerings?

Claude Managed Agents provides a fully-managed, hosted infrastructure with a REST API, ideal for production. This contrasts with SDK-based approaches, like Anthropic's own Agent SDK or some OpenAI agents frameworks, which require you to run the agent loop on your own infrastructure.

What are the main cost considerations when using Managed Agents?

Costs include a $0.08/session-hour fee plus token costs. Key considerations are managing token usage from tool calls and retries, and optimizing "heartbeat" checks by routing them to cheaper models to avoid bill shock.

How do Managed Agents ensure security?

Security is handled through a managed sandbox, where each agent session runs in its own isolated container. This prevents unauthorized access and ensures tasks do not interfere with each other.

What is the difference between the Agent SDK and Managed Agents?

The Agent SDK is a library for running agents in your own infrastructure, best for local prototyping. Managed Agents is a fully-hosted service for running production agents in Anthropic's cloud, ideal for long-running or asynchronous sessions.

Are there any features of Managed Agents still in research preview?

Yes, "outcomes" (self-evaluation), "multi-agent" (sub-agent coordination), and "memory" (persistent memory across sessions) are currently in research preview and require requesting access.

Conclusion

The launch of Claude Managed Agents marks a significant step forward in making sophisticated AI agents accessible and deployable. By abstracting away complex infrastructure, Anthropic empowers developers to build and scale production-ready agents more efficiently. The platform's clear distinction from SDK-based approaches, its robust security model, and its real-world adoption by companies like Notion and Asana demonstrate its readiness for complex tasks. With practical cost-management strategies and a roadmap that includes advanced features like multi-agent coordination, Claude Managed Agents is a powerful and evolving platform for the future of autonomous AI.

Sources & References

Want to actually learn openai agents sdk update today?

Curo turns topics like this into a personalized, guided learning board - built around what you already know. Free to start.

Try Curo
Curo

Copyright ©2026 Pixelpath Studio Pvt. Ltd. All rights reserved