The guide · playbook
Build and sell AI agents with Claude.
Building a production-ready agent used to mean months of infrastructure work — sandboxing, state management, error handling, auth — before a single user saw anything. Claude Managed Agents handles all of that for you: you define what the agent does, Anthropic runs it on their servers, and it works autonomously for hours. That changes the business model completely. Here's the full playbook, the pricing, and a technical quickstart.
The full playbook + quickstart
🔒 Drop your email to reveal the full playbook
Get the full playbook, free.
Drop your email and the niche-to-revenue playbook, pricing, and technical quickstart unlock instantly, plus every other guide and resource in the library. One email a week, unsubscribe anytime.
What just happened
Anthropic quietly launched Claude Managed Agents — and almost nobody understood what it means for people who build AI systems. Previously, building a production-ready agent meant months of infrastructure work before a single user saw anything. Claude Managed Agents handles all of it: you define what the agent does, Anthropic runs it on their servers, the agent works autonomously for hours, and it can even spawn other agents to handle subtasks in parallel.
The business model in plain English
You are now in the business of selling outcomes, not software.
| What you do | What the client pays |
|---|---|
| Build the agent (one-time setup) | $1,500 – $3,000 setup fee |
| Monitor & maintain it monthly | $500 – $1,000/month retainer |
| The agent runs 24/7 on Claude's servers | Client gets the value indefinitely |
10 clients × $500/month = $5,000 MRR. Maintenance time per client: roughly one hour a month. This isn't hypothetical — companies like Rakuten, Notion, Asana, and Sentry are already using Managed Agents in production, and Rakuten deployed agents across five departments in under a week each.
Step 1: Pick your niche
The fastest path to revenue is solving one repetitive problem for one type of business. Good starting niches:
- Real estate agencies → lead follow-up, property listing summaries, document processing.
- E-commerce brands → customer support, returns handling, product description generation.
- Coaches & consultants → onboarding automation, proposal drafting, client Q&A.
- Law firms / accountants → document intake, invoice processing, client intake forms.
- Marketing agencies → content repurposing, reporting, client brief generation.
Pick one. Don't try to serve everyone.
Step 2: Identify their #1 repetitive problem
Book a discovery call. Ask: "What does your team do every day that you wish you could just hand off completely?" You're looking for tasks that are repetitive (done weekly or daily), rule-based (clear inputs → clear outputs), time-consuming (currently takes hours), and high-stakes enough that they'd pay to fix it. Common answers: following up with leads, processing inbound emails, generating reports, summarising documents, drafting first-draft proposals. That task becomes your agent.
Step 3: Build the agent
Go to platform.claude.com/docs/en/managed-agents/overview. You'll define four things:
- The Agent — which Claude model to use, the system prompt (what it is, what it does, its rules), and the tools it can access (web search, file operations, bash, MCP integrations).
- The Environment — a cloud container with the packages your agent needs, network access rules, and any files it should have.
- Sessions — one "run" of the agent working on a task. Sessions persist even if you disconnect, and you can send messages mid-session to steer it.
- Success Criteria (self-evaluation) — the part most people missed. You tell the agent what success looks like and it keeps iterating until it gets there on its own.
Example success criteria: "Draft a proposal for this client. The proposal is complete when it includes a problem statement, three solution options with pricing, and a clear next step. If any of those are missing, revise and try again."
Step 4: Connect it to their tools
Claude Managed Agents supports MCP (Model Context Protocol), so your agent can plug directly into HubSpot / Salesforce, Gmail / Outlook, Notion / Asana, Slack / Teams, Google Drive, GitHub, and hundreds more. Your agent doesn't just generate text — it takes real actions inside real systems. This is what separates a chatbot from an actual employee.
Step 5: Price it and sell it
| Package | Setup | Monthly | What's included |
|---|---|---|---|
| Starter | $1,500 | $500 | 1 agent, 1 use case, email support |
| Growth | $2,500 | $800 | 2 agents, integrations, monthly review call |
| Enterprise | $4,000+ | $1,500+ | Multi-agent pipeline, priority support, custom training |
How to find clients:
Post about it
Document what you're building on LinkedIn or Instagram. Show the process. Show the output.Cold outreach
Pick 20 businesses in your niche. Send a 3-sentence message: what you saw their team probably does manually, what an agent could do instead, and ask if they'd want to see it.Offer a free pilot
Build one agent for free in exchange for a testimonial and case study. Use that to close the next ten clients.Referrals
Happy clients in a niche talk to each other. One client in real estate leads to five more.What the costs actually look like
Token costs run at standard Claude Platform rates (same as the API). Session runtime is $0.08 per session-hour of active agent runtime. For most business use cases a well-scoped agent runs a session in under an hour, so your infrastructure cost is almost nothing compared to what you're charging. Your margin is 90%+.
The "self-evaluating agent" unlock
Most people skipped past this. In traditional agent setups, if the agent produces a bad output it just stops — you go back, fix the prompt, re-run. With Managed Agents' outcome mode (in research preview), you define what "done" looks like and the agent evaluates its own output against that definition, retrying until it gets there. In internal testing this improved task success rates by up to 10 percentage points versus standard prompt loops, with the biggest gains on the hardest tasks. For your clients that means fewer errors, less hand-holding, and more autonomous operation over time.
Multi-agent: the scaling play
Once you're comfortable with single agents, the next level is multi-agent pipelines. One "orchestrator" agent breaks a complex task into pieces and delegates to "worker" agents running in parallel. For a marketing agency: the orchestrator says "research this brand, then produce a full content calendar"; worker 1 researches the brand and competitors; worker 2 drafts the calendar; worker 3 writes copy for each post; worker 4 formats everything into a client-ready doc. All running simultaneously — delivering in minutes what used to take a day. This feature is in research preview; request access at the links below.
Technical quickstart: your first running agent
This is the part most guides skip. Here's exactly how to go from zero to a running agent.
What you need: an Anthropic Console account (console.anthropic.com), an API key (console.anthropic.com/settings/keys), and the Anthropic SDK installed.
Step 1: Install the SDK
Python:
Node / TypeScript:
Step 2: Create your agent
This defines what your agent is — its model, personality, and tools.
The agent_toolset_20260401 tool type gives your agent the full built-in toolkit: bash commands, file read/write, web search, and more. You can also connect it to external tools via MCP (covered below).
Step 3: Create an environment
The environment is the cloud container your agent runs inside.
Step 4: Start a session and send it a task
A session is one "job run." You create a session, send it a message, and stream the results back in real time.
Your output will look something like:
Step 5: Connect to real tools via MCP
This is what makes the agent actually take actions inside your client's systems. When creating your agent, add MCP servers to connect it to external platforms:
Now the agent can read and write to HubSpot, send emails via Gmail, and do it all autonomously within a session — no human in the loop. Popular integrations: HubSpot / Salesforce (CRM updates), Gmail / Outlook (email), Notion / Asana (tasks), Slack / Teams (summaries), Google Drive (documents), GitHub (PRs and code review).
Step 6: Define outcomes (self-evaluation mode)
Instead of telling the agent how to do something, tell it what success looks like and let it figure out the rest. This feature is in research preview — request access at platform.claude.com.
The agent will keep iterating until it meets that definition of done — on its own.
Full docs & next steps
- Overview: platform.claude.com/docs/en/managed-agents/overview
- Quickstart: platform.claude.com/docs/en/managed-agents/quickstart
- Tools reference: platform.claude.com/docs/en/managed-agents/tools
- MCP connector: platform.claude.com/docs/en/managed-agents/mcp-connector
- Launch post: claude.com/blog/claude-managed-agents
Your move: get API access, read the docs, pick your niche and the one task you'll automate first, build a working demo within 48 hours, and send 10 outreach messages to businesses in your niche this week.
Quick reference
| Term | What it means |
|---|---|
| Agent | Model + system prompt + tools + rules |
| Environment | The cloud container your agent runs inside |
| Session | One active "job" the agent is working on |
| Events | Messages between your app and the agent |
| MCP | How the agent connects to external tools (HubSpot, Gmail, etc.) |
| Outcomes | Define success criteria → agent self-evaluates until it reaches them |
Original guide by Artem Novitckii. More from him on Instagram, in the Skool community, and across his resource library.