← Business Edition / For Business
07-choose-operator

Choose Your Operator

Build it yourself, buy a proprietary platform, or use the open-source framework the market has converged on — and how to think about the trade-off.

The choice is not between three products. It is between three relationships with time.

You’ve audited your systems. You know what they can do. You know the embedded agents are brilliant but trapped. You know you need an external operator — someone who can walk the entire floor.

Now the question becomes: who? What operator do you actually connect to your MCP servers?

This isn’t a theoretical question anymore. In 2026, there are real options on the table, and they’re not all equal. The choice you make here determines whether your external operator becomes a genuine business advantage or just another integration project that looked good on the architecture diagram.


The Landscape

Right now, you have three paths.

Build your own. Hire a team of AI engineers, design an agent architecture, build the orchestration layer, handle the MCP connections, manage the memory, implement the safety rails, and maintain it all as the field evolves. This gives you complete control. It also gives you a multi-quarter engineering project before you see a single automated task.

Buy a proprietary platform. Microsoft Copilot Studio, Google Vertex AI Agent Builder, various enterprise AI platforms — these offer managed agent infrastructure with varying degrees of flexibility. You get vendor support and polished tools. You also get licensing fees, vendor lock-in, and a roadmap you don’t control.

Use OpenClaw. An open-source agent framework built specifically for this architecture: an external operator that connects to SaaS systems via MCP, runs 24/7, and can be configured in hours, not months. Free, transparent, and the framework the industry converged on — the one OpenAI validated by adopting its core primitives in April 2026.

Let’s walk through what each path actually looks like in practice — not in marketing language, but in the language of a Tuesday morning when something breaks.


The Build-Your-Own Path

You commission an internal team to build the operator. The argument for doing so sounds strong in the room — full control, no vendor lock-in, a proprietary asset.

What you actually commit to is four to six months before the first automated business process runs. The first two months go to infrastructure decisions the team has to make before any business logic exists: how the agent remembers context across sessions, how it handles tool calls, how it recovers from failures. Month three is where it gets hard — not talking to one system but reasoning across several, which is trivial for a human and complex for an agent. Month four is production hardening: error handling, retry logic, observability, the unglamorous work that determines whether the agent works reliably or only in demos. Month five is when something ships, if nothing has been re-prioritized and the architecture decisions from month one held up.

The cost lands somewhere between $50,000 and $200,000 in engineering time depending on team size and seniority. And the maintenance is yours forever — as the underlying frameworks evolve, your team keeps up.


The Proprietary Path

You skip the build. You pick a managed platform. Microsoft Copilot Studio, let’s say.

The setup is faster. Microsoft provides the infrastructure, the model access, the orchestration layer. You configure your agent through their UI, connect it to your data sources, and deploy. Two weeks to a working prototype, maybe a month to something production-ready.

But then the constraints appear. Copilot works best with Microsoft’s ecosystem — Azure, Dynamics, Teams. Microsoft’s Power Platform offers over 1,200 prebuilt connectors, and many popular services like HubSpot have them. But niche or regional systems like Fortnox don’t. Each missing connector means building a custom one — a mini-project of API work, authentication, and error handling. Not impossible, but not the one-plug-fits-all promise either.

And then there’s the licensing. The standalone Copilot Studio license is $200 per tenant per month for 25,000 Copilot Credits — consumed per agent response and action. Pay-as-you-go runs $0.01 per credit. That sounds manageable until you map real usage: an agent that queries multiple systems, processes documents, and handles hundreds of conversations per day burns through credits fast. When you exceed your allocation, agents stop responding. For many organizations, actual costs land in the thousands per month once production usage ramps up — and the credit consumption model is complex enough that forecasting is difficult.

The deeper problem is the roadmap. When Microsoft decides to change how Copilot handles tool calls, you adapt. When they deprecate a feature you relied on, you rebuild. When they decide your use case isn’t a priority, you wait. You’ve traded control for convenience, and the exchange rate isn’t always favorable.


The OpenClaw Path

OpenClaw takes a different approach. Instead of building everything from scratch or buying a managed platform, it gives you a ready-made operator framework that you configure, not code.

The architecture is deliberately simple. Three files define the operator: SOUL.md (who the agent is — personality, boundaries, tone), AGENTS.md (how the agent behaves — rules, tools, memory), and HEARTBEAT.md (what the agent does periodically — checks, scans, maintenance). You don’t write orchestration logic. You don’t implement MCP clients. You describe what you want, and the framework handles the how.

Setup time: about an hour to a working operator. You install OpenClaw, write your three configuration files, point it at your MCP servers, and run your first SIM. If the skill audit was done right, you’ll see your first automated business process on the same day.

Cost: free. Open source. No licensing fees. No per-user charges. No vendor lock-in. If OpenClaw disappears tomorrow, the code is on your machine and the MCP servers are still running.

But “free” isn’t the real argument. The real argument is the community. That ecosystem signal matters for a practical reason — thousands of developers are building, testing, and improving the framework. MCP servers for popular SaaS platforms are being contributed by the community. When you hit a problem in production, someone has almost certainly already solved it.

The risk, of course, is maturity. OpenClaw moves fast. APIs change. The community is enthusiastic but not always conservative. If you need enterprise-grade stability guarantees — SLAs, dedicated support, certified integrations — the open-source path requires you to provide those yourself or find a partner who does.


The Honest Comparison

Let’s be direct about the trade-offs, because this decision matters.

Building your own gives you maximum control at maximum cost and maximum time. If you’re a large enterprise with a dedicated AI team and a multi-year roadmap, this might make sense. If you’re a mid-size company that needs results this quarter, it almost certainly doesn’t.

Proprietary platforms give you convenience at the cost of flexibility and recurring expense. If you live entirely inside one vendor’s ecosystem — all Microsoft, all Google — the integration is smooth. The more heterogeneous your stack, the more friction you’ll feel.

OpenClaw gives you speed, flexibility, and zero licensing cost, with the trade-off of community support instead of vendor support. For most companies — especially mid-size businesses running multiple SaaS platforms — this is the right balance.

Build Your OwnProprietary PlatformOpenClaw
Time to first automation4-6 months2-4 weeks1-2 hours
Ongoing costEngineering team$200/tenant/month + usage-based creditsFree
FlexibilityCompleteLimited by vendorHigh (open source)
Vendor lock-inNoneHighNone
Support modelYour teamVendor SLAsCommunity
MCP integrationCustomVariesNative

The table tells the story. For speed, OpenClaw wins. For cost, OpenClaw wins. For flexibility, OpenClaw wins. For enterprise support guarantees, proprietary platforms win. For absolute control, building your own wins — if you have the resources and the patience.

New Entrant: OpenAI Agents SDK (April 2026)

In April 2026, OpenAI released a major update to its Agents SDK that’s worth noting:

  • MCP as first-class primitive — OpenAI now supports MCP for tool integration
  • AGENTS.md support — same pattern OpenClaw uses for custom instructions
  • Skills via agentskills.io — standardized skill discovery
  • Native sandbox execution — E2B, Cloudflare, Daytona, Modal, Vercel

This is significant because it validates the same architecture OpenClaw pioneered. OpenAI and OpenClaw now share MCP, AGENTS.md, and Skills as core primitives.

Key difference: OpenAI’s SDK is model-locked (OpenAI models only) and proprietary. OpenClaw is model-agnostic and open source. OpenAI gives you a polished harness for their models; OpenClaw gives you an open framework that works with any provider.

When to consider OpenAI Agents SDK: You’re committed to OpenAI models and want a turnkey harness optimized for them.

When to stick with OpenClaw: You want flexibility across models, no vendor lock-in, and community-driven innovation.


The Real Decision

The decision isn’t really about features or pricing. It’s about your relationship with time.

If you have years, build your own. You’ll get exactly what you want, eventually.

If you have vendor loyalty and budget, buy a platform. You’ll get something polished, at a price.

If you have systems that are ready, an MCP layer that’s a week away, and a business that needs intelligent automation now — not next quarter, not next year, now — then you connect an external operator that can walk the floor today.

That is the case for OpenClaw. It is not the only viable operator framework — but it is the one with the largest active ecosystem, the most complete documentation, and the one this handbook has run in production.

Before you do, one more thing deserves your attention — the story that every SaaS vendor would prefer you didn’t read before your next contract renewal. Every platform you already pay for has launched an AI agent in the last eighteen months. They all work brilliantly within their own walls. What happens when you let vendors own both the platform and the agent layer above it — and what it will cost you when per-action pricing lands on your invoice — is in the next chapter.


Next: The Vendor Agent Trap →

This is the Business Edition — strategic context for C-level leaders.

For your CTO: Builder Edition →
Community — Under Development

This is your handbook

Agentic AI is evolving fast. The patterns, the laws, the architecture — they need to stay current with the community's collective knowledge.

If you have thoughts on autonomous agents, or if you want to contribute to the work around AI-operated CMS, CRM, and ERP systems — whether it's a production story, a pattern you've discovered, or an idea you want to explore — I'd love to hear from you.

Connect on GitHub