Justin McKelvey

Justin McKelvey

Fractional CTO · 15 years, 50+ products shipped

AI for Business 8 min read

AI for Startups: The Stack, the Budget, and the Three Mistakes I Get Paid to Fix Later (2026)

Quick Answer

How should a startup use AI? Answer three separate questions in this order: AI in your operations first (every person on a $20 assistant seat, today), AI in your product second (one metered API feature after you have paying customers), and AI as your product last, and only if that's actually the company you're building. The whole stack for a ten-person startup costs under $100 a month per builder. As of 2026, the expensive mistake isn't the tools — it's shipping an AI-built codebase nobody reviewed, then meeting me at the rescue.

Verified September 2026 · Author: Justin McKelvey, fractional CTO & AI consultant, 15 years in software, 50+ products shipped

TL;DR: "AI for Startups" Is Three Questions Wearing One Trench Coat

Every "AI for startups" guide I've read is a tool list written by someone who has never made payroll. Here's the version from someone who gets paid to fix the aftermath. The phrase hides three completely different questions: how your team uses AI to run the company, how your product uses AI to serve customers, and whether AI is the product. Founders who answer them in that order end up with a stack that costs less than a team lunch and a codebase they can still explain to an acquirer. Founders who answer them in the wrong order — product first, ops never, "we're an AI company" on the deck before a customer exists — are the ones I meet six months later with a rescue quote in my hand.

Question 1: AI in your operations (start here, start today)

This is the boring one, and it's the one with the highest return in the building. A startup is a small number of people doing an absurd number of jobs. Sales follow-ups, support replies, investor updates, job descriptions, the competitive teardown, the first draft of every doc. All of it is drafting work, and drafting is what frontier models are best at.

The rule I install: every person on the team gets a paid assistant seat on day one, and the founder uses theirs every day. Claude Pro or ChatGPT Plus is $20 a month per person. If you want shared projects, shared context, and connectors into the tools you already run, Claude Team is $20 per seat billed annually ($25 monthly) and, as of September 2026, is listed for teams of two to 150 — the old five-seat floor is gone. I wrote up what the founder personally does with that seat in AI for CEOs, so I won't repeat it here. The company-level version is simpler: load your context (positioning, ICP, pricing, product docs) into one shared project, and make "start the draft in Claude" the default for anything that goes to a customer, a candidate, or an investor.

What this is worth: I've watched a three-person startup take founder-led sales from four follow-ups a week to forty with the same calendar, because the call notes became the email in two minutes instead of twenty. That's not an AI transformation. That's $60 a month.

Question 2: AI in your product (second, and scoped)

Once customers are paying, the question becomes which part of the product a model should power. The failure pattern is wanting AI everywhere. The pattern that works is one workflow your customers already pay for, made dramatically faster or better by a model call. Summarize the thing, classify the thing, draft the thing, extract the fields from the thing. Ship it behind a feature flag, measure whether customers use it, then decide on the second one.

Use an API. Don't train a model. In 2026 the frontier models are better than anything a seed-stage team can build, and they're metered by the token, which means your cost scales with usage rather than headcount. The Anthropic API pricing breakdown has the full table, but the numbers that matter for a startup budget are these:

Model Input / output per million tokens Use it for
Sonnet 5 $2 / $10 The default for customer-facing features — drafting, summarization, structured extraction
Haiku 4.5 $1 / $5 High-volume classification, routing, cheap first passes
Opus 5 $5 / $25 The hard 5% — long-document reasoning, agentic multi-step work

Two levers most founders miss: prompt caching (cache hits bill at 10% of the input rate, so a long system prompt reused across thousands of requests is nearly free) and the Batch API (50% off for anything that doesn't need a real-time answer). A support-summarization feature that looks like $120 a month on the rate card is closer to $66 with caching. Do the multiplication before you build: tokens per request × requests per day × the published rate. If your AI bill is ever a surprise, it's because nobody did that multiplication.

Question 3: AI as your product (only if it's true)

Some startups genuinely are AI companies: the model, the data pipeline, or the agent is the thing customers buy. That's a real business with different economics — gross margin eaten by inference, a moat that has to come from proprietary data or workflow, and a pitch that has to survive the question "what happens when the model provider ships this as a feature?"

Here's the honest test. If you removed the word "AI" from your deck, would the customer still pay for the outcome? If yes, you're a software company that uses AI, which is a great thing to be, and questions 1 and 2 are your whole roadmap. If no, you're an AI company and you need a data or distribution advantage the general models can't erase. Most founders I talk to are the first kind and have been told to pretend they're the second. Don't. Investors have seen the wrapper deck.

The stack for a 1-to-10 person startup

As of 2026, this is the entire AI stack I'd install on day one, with real prices:

  • One assistant for everyone: Claude Pro or ChatGPT Plus, $20/person/month. Claude Team at $20/seat annual if you want shared projects and connectors. Which model to default to is in best Claude model for business.
  • One coding tool for whoever builds: Cursor Pro at $20/month, or Claude Code inside a Claude plan. Not both on day one.
  • One model API for the product: Sonnet 5 as the default, Haiku 4.5 for volume. Budget $50–$500/month at early-customer scale.
  • Nothing else until inbound volume justifies it. An AI receptionist, a follow-up sequence, a support bot — these pay off once calls and tickets are arriving faster than a human can answer. Before that, they're a subscription and a demo. When you get there, AI automation for small business is the priority order.

Total: under $100 a month per builder, under $40 a month per non-builder. If someone quotes you an "AI transformation" for a ten-person company, ask which of the four lines above it replaces.

Building the product with AI without building the rescue

The 2026 build path is real and I'd use it for any new product: vibe code the MVP in days, put it in front of customers, learn. The part the tool vendors leave out is the part I get paid for. AI-built and production-grade are different finish lines. An AI-generated codebase that demos perfectly can ship with auth shortcuts, missing validation, secrets in the repo, and data exposure that only shows up when a real user does something the prompt didn't anticipate.

The fix is not "don't use AI to build." The fix is a gate: before real customer data arrives, run the vibe coding security checklist, or hand the copy-paste audit prompt to the same coding agent that built the app and read what it finds. Twenty minutes. If the report comes back red, that's the moment to get senior eyes on the architecture — a fractional CTO at a few hours a week, not a full-time hire — and it's a fraction of what a rebuild costs after customers depend on it.

The three mistakes I get paid to fix later

  1. Product before operations. The team is building an AI feature while the founder is still writing investor updates from a blank page. Flip it. Operations pays back this week and teaches the whole team what the models can and can't do before you bet the roadmap on them.
  2. The unreviewed codebase. Shipped on AI, scaled on AI, never audited. I see this at $25K–$50K in rescue fees that a $0 checklist would have prevented. The founder didn't do anything wrong by building fast. They did something wrong by never looking.
  3. Licenses without adoption. Five seats, a Slack channel, and nobody can name the three tasks they now do differently. The test from AI for CEOs applies to a startup exactly: ask each person what they did with AI yesterday. Vague answers mean you bought licenses, not a capability.

When to bring in help (and when not to)

You don't need a consultant to pick tools. The list above is the list. You need help when one of three things is true: you have revenue and an AI-built codebase nobody senior has reviewed; you're about to spend real money on an AI feature and can't say what it costs per customer; or you have licenses and no adoption. The first two are fractional CTO work. The third is what an AI consultant does with an assessment and an install. If you can't name the workflow you'd hand either of them, you're not ready to pay anyone — go read how to start a SaaS and come back when there's a customer.

The micro-action for today

Buy the assistant seats. All of them, today, $20 each. Then take the single worst-documented process in the company — onboarding, the sales follow-up, the support macro nobody wrote — and have the person who owns it draft it in Claude with the team's context loaded. That's day one of AI in your operations, and it's ahead of most funded startups I meet. If you want to know which of the three questions you're actually stuck on, the AI readiness checklist takes ten minutes, and the 30-minute strategy call is free with no pitch in it. Most founders use it to find out they don't need me yet, which is the correct answer more often than my invoice would prefer.

Free Resource Justin McKelvey

Get the Free AI Content Toolkit

The exact system I use to turn one idea into a month of content — atomization framework, voice template, prompt library, weekly system.

Frequently Asked Questions

How should a startup use AI?
Separate the three questions first. AI in your operations (sales, support, marketing, admin) is where every startup should start, because it pays back in days and costs about $20 a month per person. AI in your product (a feature powered by a model API) comes second and should be scoped to one workflow your customers already pay for. AI as your product (you are an AI company) is a different business with different economics and should not be confused with the first two. As of 2026 the startups that get this right run Claude or ChatGPT across the team on day one, ship one AI-powered feature after they have paying customers, and never let the tool stack outrun the thing customers actually buy.
What AI tools should a startup use?
For a one-to-ten person startup: one frontier assistant for everyone (Claude Pro or ChatGPT Plus at $20 a month per person, or Claude Team at $20 per seat annually if you want shared projects and connectors), one AI coding tool for whoever builds (Cursor Pro at $20 or Claude Code inside a Claude plan), and a model API for anything customer-facing (Sonnet 5 at $2 per million input tokens and $10 output is the default; Haiku 4.5 at $1/$5 for high-volume classification). That's the whole stack for under $100 a month per builder. Add an AI receptionist or follow-up tool only once you have inbound volume worth catching.
How much should a startup spend on AI?
Assistant seats: $20 per person per month, no exceptions, from day one. Coding tools: $20 to $60 per builder. API spend for a shipped feature: usually $50 to $500 a month at early-customer volume, and the number is knowable in advance — count tokens per request, multiply by requests per day, multiply by the published rate. If a founder tells me their AI bill is a surprise, it's because nobody did that multiplication. The expensive line item is never the model. It's the engineer-weeks spent rebuilding an AI-generated codebase that was never production-grade.
Should a startup build its own AI model or use an API?
Use an API. In 2026 the frontier models from Anthropic, OpenAI, and Google are better than anything a seed-stage team can train, and they're metered by the token, so your cost scales with usage instead of with headcount. Training or fine-tuning your own model is a decision for a company with a proprietary dataset, a proven product, and a reason the general models can't do the job. Before that point, the moat is your data, your workflow, and your distribution, not your weights.
Is it safe to build a startup on AI-generated code?
It's normal now, and it's safe if you treat AI-built and production-grade as two different finish lines. Vibe-code the MVP, get customers, then run a security audit before real customer data arrives: auth, input validation, secrets, data exposure, dependency risk. The rescues I do are almost never because the founder used AI to build. They're because nobody ever checked what it built before customers depended on it. A 20-minute audit with a coding agent, or a free repo audit, is the cheapest insurance in the company.
When should a startup hire an AI consultant or a fractional CTO?
Not to pick tools — that's an afternoon of reading. Hire help when one of three things is true: you have revenue and an AI-built codebase nobody senior has reviewed, you're about to spend real money on an AI feature and can't say what it will cost per customer, or your team has licenses and no adoption. A fractional CTO covers the first two for a few hours a week; an AI consultant covers the third with an assessment and an install. If you can't name the workflow you'd hand them, you're not ready to pay anyone yet.
Is there a Claude for Startups program?
Yes. Anthropic runs a Claude for Startups program (claude.com/programs/startups, read September 2026) that gives qualifying startups API credits, priority rate limits, and founder tools. The qualifying condition is the one to read first: as of this month the program is for startups that have received equity funding from institutional investors, and VC funds can apply so their portfolio companies get credits. You apply with a Claude Console account, a company email, and your website. If you're bootstrapped, you don't qualify for the credits, but nothing in the stack above depends on them — at early-customer volume the API bill is a rounding error next to a single engineer-week, and the pay-as-you-go rates (Sonnet 5 $2/$10, Haiku 4.5 $1/$5 per million tokens) are the same ones the funded companies pay after the credits run out.

More on AI for Business

AI for Consultants: How a One-Person Practice Runs on Claude Without Losing the Judgment Clients Pay For (2026)

I'm a consultant. Here's how my practice actually runs on AI as of 2026 — the three jobs it does every day, the one job it's banned from, what it costs, and the pricing mistake most consultants make the week they get faster.

7 min

Claude for Lawyers: What It's Actually Good At, What to Never Paste In, and What It Costs (2026)

Anthropic now sells Claude to law firms directly — Cowork plugins for litigation and corporate work, Word and Outlook add-ins, connectors into iManage and NetDocuments. Here's the small-firm version: which plan, what the data terms actually say, the never-paste list, and the four workflows where it earns its $20 in the first week.

7 min

AI for CEOs: What to Do Yourself, What to Delegate, and What to Refuse (2026)

The CEO's job with AI is not to become the best prompt writer in the building. It's to use it personally on the six things only you do, delegate the three things that scale, refuse the three that don't, and write a one-page policy so everyone else can move. Here's the weekly routine I run and install.

7 min

AI for Executives: The Five Decisions That Are Yours, and the Twenty That Aren't (2026)

Executives don't need to learn AI. They need to make five decisions about it: what to fund, what to refuse, who owns it, what the board gets told, and what 'we use AI' means in the P&L. Everything else belongs to the people who run the workflows. A fractional CTO's version of the executive AI briefing, without the slide deck.

8 min
Justin McKelvey, Fractional CTO and AI consultant in Austin, TX

Written by

Justin McKelvey

Fractional CTO & AI consultant in Austin, TX. 15 years building software, 50+ products shipped, $53M+ in client revenue generated. I help $1M–$50M founders ship production software and automate operations with AI — without hiring a full-time executive team.

Work with me

If this was useful, here are two ways I can help: