In this article10
- 1.What goes into AI agent development cost?
- 2.How much does it cost to build an AI agent?
- 3.Monthly running costs: what do tokens cost?
- 4.Maintenance: the cost everyone forgets
- 5.Build vs buy: when is off-the-shelf enough?
- 6.How Airflows builds an AI agent in phases
- 7.How to keep AI agent costs under control
- 8.Frequently asked questions
- 9.Next steps
- 10.Sources
AI agent development cost breaks down into three parts: a one-time build (discovery, integrations, testing), ongoing usage (language model tokens and hosting), and maintenance. The build is usually the biggest line item, tokens are often cheaper than expected, and maintenance is almost always underestimated. Below we walk through a realistic example and show when buying an off-the-shelf tool beats building your own.
The short version:
- Build cost depends mostly on the number of integrations and how much oversight you need, not on the AI model.
- Tokens are cheap at typical volumes: processing 2,000 invoices a month costs between about $5 and $180 in model fees in our example, depending on the model.
- Budget for maintenance and monitoring from day one. An agent is never "done."
- Start with a paid discovery and a small MVP. That caps your risk if the process turns out to be a poor fit.
What goes into AI agent development cost?
An agent is software, not a subscription. Look at total cost of ownership over a few years, not just the first invoice.
| Cost item | Type | What it covers | What drives it |
|---|---|---|---|
| Discovery and design | One-time | Process mapping, data review, success metric, architecture | Number of processes and systems |
| MVP build | One-time | Agent logic, tools, integrations, admin screen, logging | Number of integrations, complexity of exceptions |
| Testing and evaluation | One-time and ongoing | Test set of real cases, measuring error rates | How expensive a mistake is |
| Tokens | Ongoing | Cost per language model call | Volume, document length, model choice |
| Hosting and infrastructure | Ongoing | Servers, database, storage, queues | Volume and uptime requirements |
| Maintenance and operations | Ongoing | API changes, new models, tuning, monitoring | Number of integrations and how often processes change |
The AI model is one row in that table. The real work is in connecting to your systems and in everything that keeps the agent reliable.
How much does it cost to build an AI agent?
Three questions set the build budget:
- How many systems does the agent touch? One inbox and one accounting package is very different from an ERP, a CRM, and an in-house scheduling tool at once. Every integration needs authentication, error handling, and testing.
- How messy is the input? Fixed forms are easy. Free-form emails, scanned PDFs, and inconsistent layouts need more design and more test cases.
- How much autonomy does it get? An agent that only makes suggestions is simpler and safer than one that posts entries or emails customers on its own. More autonomy means more checks, permissions, and logging.
As a market reference: freelance IT specialists in the Netherlands charge roughly EUR 70 to 130 per hour depending on seniority. An MVP that takes 4 to 8 weeks for one full-time engineer is 160 to 320 hours, or roughly EUR 11,000 to 42,000 in labor, before project management or a second engineer. Rates vary widely by country and by agency versus freelancer, so treat this as an order of magnitude, not a quote.
For the general, non-AI side of this question, see custom software development cost.
Monthly running costs: what do tokens cost?
Language models charge per million tokens, split into input (what you send) and output (what the model writes back). A token is roughly three quarters of a word.
Worked example: an invoice agent. Say an agent processes 2,000 supplier invoices a month. Per invoice, spread over several steps (PDF text, instructions, tool results), about 15,000 tokens go in and 1,500 come out. That is 30 million input tokens and 3 million output tokens a month. These are our assumptions; your volume and documents determine the real numbers.
| Model (prices as of September 2026) | Input per 1M tokens | Output per 1M tokens | Monthly cost in this example |
|---|---|---|---|
| GPT-6 Luna | $0.10 | $0.50 | about $4.50 |
| Gemini 3.8 Flash (introductory price) | $0.75 | $3.75 | about $34 |
| Claude Sonnet 5 | $2 | $10 | about $90 |
| Claude Opus 5.5 | $4 | $20 | about $180 |
A few caveats:
- Not every step needs the strongest model. Often a cheap model extracts the PDF and a stronger model only reviews the tricky exceptions.
- Caching cuts costs sharply. Instructions and fixed context that repeat on every call can be cached. On Claude Opus 5.5, a cache read costs $0.20 per million tokens instead of $4.
- Prices fall fast. Opus 5.5 is 20% cheaper per token than its predecessor, and GPT-6 Sol and Luna are 50% cheaper than the previous generation. Design so you can swap models.
- Loops are the real risk. An agent that retries endlessly after an error keeps burning tokens. A hard cap on retries and a daily budget belong in every build.
Maintenance: the cost everyone forgets
An agent runs in a changing environment. Vendors update their APIs, models get deprecated, your processes change, and new exceptions appear. You also want to know how it performs: how much succeeds, how much gets escalated, what it costs.
Using our own assumption of 8 hours of operations and tuning per month at EUR 100 per hour, that is EUR 800 a month, or EUR 9,600 a year. Yours may be higher or lower, but it is never zero. A vendor that does not mention maintenance is only telling you half the story.
In McKinsey's State of AI 2026, 20% of organizations said the cost of AI had limited their use of it. Gartner lists escalating costs as one of three main reasons it expects over 40% of agentic AI projects to be canceled by the end of 2027. An honest total cost estimate up front prevents that.
Build vs buy: when is off-the-shelf enough?
You do not always need a custom build. There are serious alternatives:
| Option | Price indication (September 2026) | Good for | Limitation |
|---|---|---|---|
| Microsoft 365 Copilot Business | From $18 per user per month (US promo price; $21 list at launch) | Personal productivity inside Office | Little control over deep integration with your own systems |
| Copilot Studio | $200 per month per pack of 25,000 credits, or $0.01 per credit | Simple agents in the Microsoft ecosystem | Cost scales with usage, tied to Microsoft |
| n8n | Starter $20/month (2,500 executions), Pro $50 (10,000) | Workflows with an AI step, self-hostable | Complex logic and permissions get messy fast |
| Custom agent | Build plus usage plus maintenance | Core processes spanning several systems with your own rules | Higher upfront investment |
Buy when the process is standard and the tool already handles it well. Build when the process differentiates you, when several systems without ready-made connectors are involved, or when you want full control over data and logic. A deeper comparison of workflow platforms is in n8n vs Make vs Zapier vs custom.
How Airflows builds an AI agent in phases
We split every agent project into stages so you never commit a large budget before you know it works.
- Discovery (EUR 3,500). We map the process, review real examples and data, define the success metric, and deliver a design with a realistic budget. Sometimes the conclusion is that you do not need an agent.
- Working MVP in 4 to 8 weeks. One process, real integrations, real data, with a person reviewing the output.
- Iterations. We improve and extend based on measured results.
- Production with an SLA. Monitoring, maintenance, and availability commitments.
You own all code and data. No vendor lock-in: if you want to continue in-house or with another partner later, you can. Current rates are on our pricing page.
How to keep AI agent costs under control
- Pick one process with a clear, measurable gain, not five at once.
- Let the agent suggest before it acts.
- Set limits on retries, tokens, and daily spend.
- Measure from week one: time saved, error rate, cost per completed task.
- Keep the model swappable so you benefit from price drops.
To weigh these costs against the return, read AI ROI calculation. For the basics, see what is an AI agent.
Frequently asked questions
How much does it cost to build an AI agent?
A first version covering one process typically takes roughly EUR 10,000 to 45,000 in build effort at Dutch market rates, depending on integrations and oversight requirements. On top of that come usage costs for tokens and hosting, from a few dollars to a few hundred dollars a month at typical volumes, plus maintenance. A paid discovery gives you a budget for your specific case.
What are the monthly costs of running an AI agent?
Add up tokens, hosting, and maintenance. In our example of 2,000 invoices a month, model fees range from about $5 to $180 depending on the model. Maintenance is usually the larger item.
How long does AI agent development take?
A first working version for one process can be live in 4 to 8 weeks after a short discovery. After that comes a period of measuring and tuning before the agent is given more autonomy.
Can I build an AI agent myself with Copilot Studio or n8n?
Yes, for simple tasks inside one ecosystem that works well. Once you connect several systems, need custom permissions, or run high volumes, cost and complexity climb, and a custom build is often cheaper over time.
Who owns the code when an agency builds an AI agent?
That depends on the contract, so check it before you sign. At Airflows, the client owns all code and data, so you can move to another team or take it in-house without starting over.
Next steps
Pick one process where your team demonstrably loses hours, and write down the volume, the systems involved, and what a mistake costs. That is enough for an honest business case. If you want help with that first estimate, take the free AI scan or see how we work on our services page.
Sources
- Anthropic: Introducing Claude Opus 5.5 (September 22, 2026)
- Claude Platform Docs: Models overview (accessed September 26, 2026)
- OpenAI: Introducing GPT-6 Sol and Luna (September 22, 2026)
- Google: Introducing Gemini 3.8 Flash (September 2, 2026)
- Microsoft: Microsoft 365 Copilot Business (December 2, 2025)
- Microsoft: Copilot Studio pricing (accessed September 26, 2026)
- n8n: Plans and Pricing (accessed September 26, 2026)
- Freelance.nl: Hourly rate overview for freelancers (accessed September 26, 2026)
- McKinsey: The state of AI in 2026 (August 25, 2026)
- Gartner Predicts Over 40% of Agentic AI Projects Will Be Canceled by End of 2027 (June 25, 2025)

Builds AI agents, automations and custom software for businesses at Airflows.



