File: hosting.md | Updated: 11/15/2025
Agent Skills are now available! Learn more about extending Claude's capabilities with Agent Skills .
English
Search...
Ctrl K
Search...
Navigation
Guides
Hosting the Agent SDK
Home Developer Guide API Reference Model Context Protocol (MCP) Resources Release Notes
On this page
The Claude Agent SDK differs from traditional stateless LLM APIs in that it maintains conversational state and executes commands in a persistent environment. This guide covers the architecture, hosting considerations, and best practices for deploying SDK-based agents in production.
Container-Based Sandboxing
For security and isolation, the SDK should run inside a sandboxed container environment. This provides:
System Requirements
Each SDK instance requires:
npm install -g @anthropic-ai/claude-codeapi.anthropic.comUnlike stateless API calls, the Claude Agent SDK operates as a long-running process that:
Several providers specialize in secure container environments for AI code execution:
Pattern 1: Ephemeral Sessions
Create a new container for each user task, then destroy it when complete. Best for one-off tasks, the user may still interact with the AI while the task is completing, but once completed the container is destroyed. Examples:
Pattern 2: Long-Running Sessions
Maintain persistent container instances for long running tasks. Often times running multiple Claude Agent processes inside of the container based on demand. Best for proactive agents that take action without the users input, agents that serve content or agents that process high amounts of messages. Examples:
Pattern 3: Hybrid Sessions
Ephemeral containers that are hydrated with history and state, possibly from a database or from the SDK’s session resumption features. Best for containers with intermittent interaction from the user that kicks off work and spins down when the work is completed but can be continued. Examples:
Pattern 4: Single Containers
Run multiple Claude Agent SDK processes in one global container. Best for agents that must collaborate closely together. This is likely the least popular pattern because you will have to prevent agents from overwriting each other. Examples:
How do I communicate with my sandboxes?
When hosting in containers, expose ports to communicate with your SDK instances. Your application can expose HTTP/WebSocket endpoints for external clients while the SDK runs internally within the container.
What is the cost of hosting a container?
We have found that the dominant cost of serving agents is the tokens, containers vary based on what you provision but a minimum cost is roughly 5 cents per hour running.
When should I shut down idle containers vs. keeping them warm?
This is likely provider dependent, different sandbox providers will let you set different criteria for idle timeouts after which a sandbox might spin down. You will want to tune this timeout based on how frequent you think user response might be.
How often should I update the Claude Code CLI?
The Claude Code CLI is versioned with semver, so any breaking changes will be versioned.
How do I monitor container health and agent performance?
Since containers are just servers the same logging infrastructure you use for the backend will work for containers.
How long can an agent session run before timing out?
An agent session will not timeout, but we recommend setting a ‘maxTurns’ property to prevent Claude from getting stuck in a loop.
Was this page helpful?
YesNo
Session Management Modifying system prompts
Assistant
Responses are generated using AI and may contain mistakes.