

Engineering
AI Features in Your SaaS MVP: When to Add Them, When to Skip
In 2026, every SaaS founder hears the same pressure from investors and from their own anxiety: "Where's the AI?" Half of them then bolt a chatbot onto their MVP that nobody uses. Here's how to decide whether AI belongs in your MVP, where it genuinely earns its place, and how to ship it for a few hundred pounds rather than a few hundred thousand.
Should I add AI features to my SaaS MVP?
Add AI to your MVP only when it solves a specific customer problem faster or cheaper than the human alternative. Skip it when it's there to look modern, when it duplicates your core value prop, or when it adds latency without proportionate benefit. The right answer for most MVPs is one targeted AI feature, not five.
The pressure to add AI everywhere is real but mostly investor-driven. Real customers don't want "AI." They want their problem solved. AI is a tool — sometimes the right one, often not.
When AI earns its place in an MVP
Three categories where AI consistently delivers MVP-worthy value:
1. Compression — turning lots of information into less
LLMs are exceptionally good at summarisation, extraction, and classification. If your product involves users dealing with too much text or unstructured data, AI can compress the work meaningfully.
Concrete examples that work:
- Meeting → summary (Otter, Fireflies, Granola style)
- Long document → extracted fields (invoice line items, contract clauses)
- Customer message → ticket category + priority
- Forum thread → TL;DR
- Code diff → human-readable PR description
These work because the LLM is removing human work that nobody enjoys doing. Each call has a clear before/after: "I would have spent 30 minutes on this; now it took 30 seconds." Users will pay for that.
2. Generation — drafting things from a brief
The other category where LLMs reliably earn their cost is producing first drafts that humans then edit. The crucial word is first — generated content for direct publication usually fails (low quality, sameness, SEO risk), but generated content as a starting point works.
Concrete examples:
- Email reply suggestions (3 options, pick one, edit, send)
- Product description from a few bullet points
- Code from a natural-language spec (the entire Cursor / Copilot category)
- Marketing copy variants for A/B tests
The pattern: the user provides constraints, the AI produces options, the user picks and edits. AI as a writing partner, not a writer.
3. Search and recommendation — semantic matching at scale
When you have a large catalogue or knowledge base, vector embeddings let users find things by meaning rather than exact keyword match. This is a genuine step-change over traditional search.
Concrete examples:
- "Find me support tickets about [issue]" — across thousands of past tickets, even when worded differently
- Product recommendations — "people who bought X also liked..."
- Internal documentation search that actually answers questions
The infrastructure: a vector database (Postgres + pgvector is enough for an MVP) + an embedding API call. Cheap to ship, real customer value.
When to skip AI in an MVP
The mirror of the above. Skip if any of these apply:
"AI assistant" with no specific job
The most common AI-in-MVP mistake: a chat box in the corner labelled "AI assistant" that does nothing specific. Users open it, ask a vague question, get a generic answer, close it, never return. This adds technical debt and support burden for zero value.
If you can't write the sentence "When the user [specific situation], the AI [specific action], saving them [specific time]," skip it.
Anything that replaces your core value prop
If your product is "the best way to write code" and you bolt on an AI that writes the code for the user, you've eliminated your own value. This is rare but happens — particularly with productivity tools where AI commoditises the manual workflow.
In those cases, AI is your competitive threat, not a feature you should add. Rethink the product, don't bolt it on.
Real-time interactions where latency matters
LLM calls take 1–10 seconds. For a feature in your hot path (search-as-you- type, live form validation, anything per-keystroke), that latency makes the product feel broken. Either find a faster solution (rules-based, classical ML, cached embeddings) or accept that the feature can't be AI.
Anything regulated or high-stakes without guardrails
Medical advice, legal advice, financial advice, anything where a hallucination becomes a lawsuit. The AI part of your MVP needs serious guardrails — citation of sources, confidence scores, human-in-the-loop review. Don't ship raw LLM output in regulated domains. If you can't afford the guardrails, skip the AI.
How to build AI features for an MVP (cheaply)
The good news: AI in 2026 is mostly an API call. You don't need to train models, fine-tune anything, or host GPUs. The default stack:
| Layer | Pick |
|---|---|
| LLM API | OpenAI (best general-purpose) or Anthropic (better at reasoning, safer outputs) |
| Embeddings | OpenAI text-embedding-3-small is cheap and good enough |
| Vector DB (if needed) | Postgres + pgvector — keep it in your existing database |
| Prompt management | Plain TypeScript constants for an MVP. Prompt-management tools (PromptLayer, etc.) come later |
| Cost monitoring | OpenAI usage dashboard + your own per-user counter in DB |
| Caching | Aggressive — cache by input hash, save 50–80% of cost |
Typical MVP costs
For an MVP processing modest volume, expect:
- GPT-4o for most generation tasks: ~£0.005–£0.02 per call
- GPT-4o-mini for simpler tasks (classification, extraction): ~£0.0005 per call
- Embeddings for search: pennies per thousand documents
Your AI API bill for a pre-PMF MVP should be under £100/month. If it's higher than that, you're either at scale (good) or over-engineering. The cost concern is real at thousands-of-users scale, not at MVP scale.
The build-vs-buy question
For MVPs in 2026: always API, never self-hosted. The infrastructure cost of running your own model is higher than the API cost until you're well into product-market fit territory. Skip the temptation to self-host because it sounds technically impressive — it isn't, at MVP scale.
Exception: if your data can't leave your infrastructure (regulated industries), self-hosting on a private cloud is the move. Otherwise, API.
How to prompt-engineer for an MVP
Three principles that punch above their weight:
-
Show, don't tell. Include 2–3 examples of the input → output transformation in the prompt itself. This produces dramatically better results than describing what you want abstractly.
-
Constrain the output. Ask for JSON with a specific schema, or "answer in 1 sentence," or "only return the extracted value." Constrained outputs are easier to parse and harder to hallucinate.
-
Give the model an out. "If you can't determine X, return null." This prevents the model from confidently making things up — which is the #1 source of LLM-feature complaints.
That's it. You don't need a PhD in prompt engineering for an MVP. You need clear examples, constrained outputs, and graceful failure.
A concrete example: AI in a B2B invoicing MVP
Imagine you're building a B2B invoicing tool. Where could AI earn its place?
| AI feature | Verdict | Why | |---|---|---| | Extract line items from emailed PDFs | ✅ Yes | Removes real human work (manual data entry), measurable time saved | | Suggest invoice descriptions from a bullet brief | ✅ Yes | Drafts the awkward writing task; user edits and ships | | Categorise incoming payment notifications | ✅ Yes | Classification is LLMs' sweet spot; saves admin time | | Chat with your invoices ("what did I bill in March?") | ⚠️ Skip for MVP | Sounds great, in practice usually duplicates the dashboard; build later | | AI-generated invoices from scratch | ❌ Skip | What does this even mean? The user knows what they're billing for |
One thing to notice: the "yes" features all have a clear before/after time saving. The "skip" features are vague or duplicate existing UI.
The bottom line
Add AI to your MVP only when:
- The feature has a specific, measurable job
- That job involves either compressing information, generating drafts, or semantic search
- It doesn't replace your core value prop
- Latency isn't a deal-breaker
Skip it when AI is decorative ("look modern"), when it's a chat box with no specific role, or when you can't articulate the saving in one sentence.
Most successful MVPs in 2026 have one well-targeted AI feature, not five. Pick the right one, build it for under £100/month in API costs, and let customers tell you whether to expand.
Need help deciding whether AI belongs in your MVP — and which feature would actually earn its place? Book a free scoping call and we'll work it through with you.



Leave a comment