Methodology. Pricing on this page was verified against each vendor’s public pricing page in May 2026. Capability claims are drawn from official documentation, public changelogs, and verified user reports on Indie Hackers, Hacker News, and Reddit. We have not personally built production apps with every tool listed; this is a research synthesis, not a first-person review. Where this site does have a long-form review of a specific tool, it’s linked inline. How we research.

This guide covers the 13 tools a one-person SaaS team can actually use to ship a product, get paid, measure what users do, and tell people the product exists — without hiring anyone. It is opinionated where the public evidence is clear and neutral where it isn’t. Every recommendation is anchored to a specific founder profile (non-technical, developer-founder, B2B, indie consumer) rather than a generic "best" label.

The total fixed cost of this stack, once you outgrow free tiers, lands between $90 and $200 per month depending on which payment processor and email platform you choose. A single $49/month subscription customer covers most of it.

All 13 tools at a glance

Starting price, free tier, and category for every tool covered below. Click a tool name to jump to its detail block.

Tool Category Starting price Free tier Link
Lovable AI build tool $25/mo Pro Yes lovable.dev
Cursor AI code editor $20/mo Pro Hobby tier cursor.com
Claude AI assistant $20/mo Pro Free web claude.ai
Supabase Backend / Postgres $25/mo Pro Yes supabase.com
Railway Deployment $5/mo Hobby Trial credit railway.com
Stripe Payments 2.9% + $0.30 No monthly fee stripe.com
Lemon Squeezy Payments / Merchant of Record 5% + $0.50 No monthly fee lemonsqueezy.com
PostHog Product analytics Usage-based 1M events/mo posthog.com
Chartmogul Revenue analytics $59/mo Starter To $10K MRR chartmogul.com
Beehiiv Newsletter / audience $43/mo Scale 2,500 subs beehiiv.com
Typefully Social scheduling $12.50/mo Starter Limited typefully.com
Linear Issue tracking $10/user/mo Basic 250 issues linear.app
Notion Docs / wiki $10/user/mo Plus Personal use notion.so
Start here based on what you’re building
Five decision paths through this list

Pick the line that fits, ignore the rest. Each path is internally consistent and has been used by founders publicly documenting their stacks.

  • If you can’t code at all → Lovable (build) + Lemon Squeezy (payments + tax) + Beehiiv (audience). Skip Cursor, Railway, and PostHog until you’ve hit traction.
  • If you’re a developer-founder shipping a consumer SaaS → Cursor + Claude + Supabase + Stripe + PostHog + Beehiiv. Add Linear once you have more than a few open bugs.
  • If you’re shipping a B2B SaaS → Cursor + Supabase + Stripe + PostHog + Linear + Notion. Beehiiv is optional — B2B distribution is usually outbound or LinkedIn, not newsletter.
  • If you’re selling globally to consumers → Lemon Squeezy over Stripe (the 5% fee buys VAT/GST handling in 40+ jurisdictions). Everything else the same.
  • If you’re building a content-led product → Beehiiv + Typefully as the front door, Lovable or Cursor for the product itself, Stripe for paid tiers, PostHog for in-product analytics.

AI build tools

The core tools for turning prompts into working products.

LovableApp Builder

What it is. A browser-based AI app builder that turns plain-English prompts into a working React + Supabase application. It scaffolds the database schema, wires up auth, deploys a hosted preview, and lets you keep iterating in chat. There is no local dev environment to manage; the whole loop happens in the browser.

Pricing. Free tier with limited daily credits. Pro is $25/mo (100 monthly credits plus up to 5 daily credits) and Business is $50/mo. Pricing per the Lovable pricing page in May 2026.

Best for. Non-technical founders who want to ship a working MVP without learning a stack, and technical founders who want a fast scaffolding pass before moving to a real IDE.

The one task it wins. Going from a blank screen to a deployed, signup-enabled prototype in one sitting. Nothing else on this list is faster for the first 24 hours of an idea.

Alternative. Bolt.new if you want stronger control over the underlying stack, or Cursor if you can already code and would rather skip the chat-loop pricing model.

Starting price
$25/mo Pro
Free tier
Yes (credit-limited)

Read our full Lovable review and Lovable pricing explained.

Try Lovable →

Affiliate link — we may earn a commission at no extra cost to you. Disclosure.

CursorAI Code Editor

What it is. A fork of VS Code with a frontier model (Claude, GPT, or Gemini, selectable per request) embedded as a first-class editor citizen. Codebase-aware completions, an Agent that can make multi-file edits, and cloud agents for background work. It is the IDE most working founders run after Lovable’s first pass.

Pricing. Hobby tier is free with limited Agent requests and Tab completions. Individual is $20/mo and unlocks extended Agent limits, frontier models, and MCPs. Teams is $40/user/mo. Pricing per the Cursor pricing page in May 2026.

Best for. Developer-founders comfortable opening a terminal who want AI suggestions inside the editor rather than in a chat tab.

The one task it wins. Multi-file refactors driven by a natural-language instruction — "extract this Supabase query into a shared util and update every caller." No web-based AI builder does this cleanly.

Alternative. Windsurf or GitHub Copilot — Windsurf if you prefer a different agent UX, Copilot if you already pay for GitHub and want the lowest-friction setup.

Starting price
$20/mo Individual
Free tier
Hobby (limited)

Read our full Cursor review, pricing breakdown, and when to switch from Lovable to Cursor.

Try Cursor free →
Claude (Anthropic)AI Assistant

What it is. Anthropic’s general-purpose AI assistant, useful as the "thinking layer" of the stack: data-model design, RLS policy review, debugging, and writing customer-facing copy. Claude is the model powering Cursor for many users, and it’s the same model used to generate much of the public Supabase documentation tooling.

Pricing. Free on claude.ai with a daily message cap. Pro is $20/mo for higher usage and Projects. The API is pay-per-token if you’re building on top of it. Pricing per anthropic.com in May 2026.

Best for. Founders who already use Cursor and want a second, non-IDE surface for longer-form reasoning: schema design, architecture decisions, and reviewing AI-generated code for security holes.

The one task it wins. Long-context reasoning on a codebase or spec document, with explicit step-by-step output you can read before applying changes.

Alternative. ChatGPT Plus ($20/mo) if you prefer OpenAI’s ecosystem, or skipping it entirely and using only Cursor’s in-editor Claude access.

Starting price
$20/mo Pro
Free tier
Daily cap on web
Try Claude free →

Backend & database

Where your data lives and your server logic runs.

SupabaseBackend / Postgres

What it is. An open-source Firebase alternative built on Postgres. One platform covers a relational database, row-level-security auth, file storage, realtime subscriptions, and edge functions. Because every layer is plain Postgres underneath, AI tools (Cursor, Claude) generate Supabase code more accurately than they do for proprietary backends.

Pricing. Free tier includes 50,000 monthly active users, 500MB database, 5GB egress, and 1GB storage across two projects (projects pause after a week of inactivity). Pro is $25/mo and lifts those limits substantially. Pricing per supabase.com/pricing in May 2026.

Best for. Almost every SaaS backend that needs Postgres, auth, and storage in one place — especially anything generated by an AI coding tool, since the schema and auth model are public-document-grade.

The one task it wins. Multi-tenant row-level security: write a policy once in SQL and every read from every client honours it. No application-layer middleware to maintain.

Alternative. Firebase if you want NoSQL and tighter Google Cloud integration, or Neon if you want bare Postgres-as-a-service without the bundled auth and storage layers. See also our list of best Supabase alternatives.

Starting price
$25/mo Pro
Free tier
2 projects, 500MB DB

Related: Supabase pricing explained, multi-tenant RLS setup, Clerk vs Supabase Auth.

Start free with Supabase →
RailwayDeployment

What it is. A deployment platform that runs anything you put in a Dockerfile or a Nixpacks-compatible repo — Node, Python, Go, Postgres, Redis, background workers, cron jobs — with minimal configuration. The pitch is "Heroku without the price hike or the deprecated free tier."

Pricing. Hobby plan is a $5/month minimum with $5 of included usage credits. Pro is $20/month with $20 included. Above the credit, you pay metered usage. Pricing per railway.com/pricing in May 2026.

Best for. Founders who need a backend service or worker that doesn’t fit Vercel’s serverless model — long-running jobs, websockets, cron tasks, or a Postgres database hosted next to the app.

The one task it wins. Standing up a worker process and a database on the same private network in under ten minutes, with no infra YAML.

Alternative. Fly.io for global edge regions and a more aggressive free-tier philosophy, or Vercel if your app is purely a Next.js frontend with API routes.

Starting price
$5/mo Hobby
Free tier
Limited trial credit

Related: Vercel vs Railway, when to switch from Vercel to Railway.

Try Railway →

Payments

Getting paid — globally, correctly, without a compliance nightmare.

StripePayments

What it is. The default payments infrastructure for software companies: subscriptions, one-off charges, invoicing, tax calculation (paid add-on), Connect for marketplaces, and an API surface every backend language has SDK coverage for. You remain the seller of record, which means you handle global tax registration yourself (or use Stripe Tax to automate the math).

Pricing. 2.9% + $0.30 per successful US online card transaction with no monthly fees or setup costs. International and 3DS-required cards add fees on top. Stripe Tax is an additional 0.5% per transaction in registered jurisdictions. Pricing per stripe.com/pricing in May 2026.

Best for. US-focused SaaS, developer-founders who want full programmatic control, and any business that may eventually need Connect, custom invoicing, or non-card payment methods.

The one task it wins. Custom checkout flows. Stripe Elements and Checkout let you ship a branded, PCI-compliant payment form in a few lines of code without redirecting users off-site.

Alternative. Lemon Squeezy (below) if you want merchant-of-record tax handling included, or Polar for digital-product sellers who want a simpler, lower-fee Stripe alternative.

Fee
2.9% + $0.30
Monthly fee
None

Related: Stripe pricing explained, what is Stripe Checkout, Stripe subscriptions with Supabase, how to add Stripe Tax, best Stripe alternatives.

Get started with Stripe →
Lemon SqueezyPayments / Merchant of Record

What it is. A merchant-of-record payments platform: Lemon Squeezy is the legal seller, which means they collect and remit VAT, GST, and US sales tax on your behalf in 40+ jurisdictions. The product ships with subscriptions, license keys, an affiliate program, and a hosted customer portal. Lemon Squeezy was acquired by Stripe in 2024 and now operates alongside Stripe Managed Payments.

Pricing. 5% + $0.50 per transaction with no monthly fee. International transactions add 1.5%, abandoned-cart recovery adds 5%, and affiliate-driven orders add 3%. Pricing per docs.lemonsqueezy.com/help/getting-started/fees in May 2026.

Best for. Solo founders selling digital products or SaaS internationally who do not want to register for VAT in the EU, GST in Australia, and consumption tax in Japan.

The one task it wins. Selling to a customer in Berlin without ever filing a tax return there. The 5% premium over Stripe’s 2.9% buys roughly 2.1 percentage points of tax-compliance outsourcing.

Alternative. Stripe directly if your customers are US-only (lower fees), or Paddle as a competing merchant-of-record option with similar tax coverage.

Fee
5% + $0.50
Tax handling
Included (MoR)

Related: Lemon Squeezy vs Stripe, when to add payments to your SaaS, payment processor fee calculator.

Start with Lemon Squeezy →

Analytics

Understanding what users actually do in your product.

PostHogProduct Analytics

What it is. An open-source product-analytics suite that bundles event tracking, session replay, feature flags, A/B tests, surveys, and error tracking into a single tool. You can self-host the open-source build or use the hosted cloud version with the same code paths.

Pricing. Free tier includes 1M product-analytics events/month, 5,000 session replays/month, 1M feature-flag requests/month, and 1,500 survey responses/month. Above the free tier, every product is metered separately (Product Analytics starts around $0.00005/event with volume discounts). Pricing per posthog.com/pricing in May 2026.

Best for. Any solo founder who wants funnels, retention curves, and recordings of real users hitting bugs — without paying $300/month for a vendor like Amplitude or Mixpanel before there’s revenue.

The one task it wins. Session replay paired with funnels. You can see exactly where a user dropped out of signup and watch their actual mouse path, in the same tool, for free up to 5,000 recordings.

Alternative. Plausible or Fathom if you only need page-view analytics and want a privacy-first, cookieless setup — both are simpler but lack replay and flags.

Starting price
Usage above free tier
Free tier
1M events/mo

Related: PostHog review, PostHog pricing explained, how to add PostHog analytics.

Start free with PostHog →
ChartmogulRevenue Analytics

What it is. A subscription-analytics dashboard that connects to Stripe (or Lemon Squeezy, Paddle, Recurly, Braintree) and automatically computes MRR, ARR, ARPA, LTV, gross/net retention, churn, and cohort tables. It exists because Stripe’s native dashboard does not give you a defensible MRR number once you have upgrades, downgrades, refunds, and proration.

Pricing. Free up to $10K MRR. Starter is $59/month (billed annually) up to $10M ARR. Pro is $99/month with unlimited team members and CRM sync. Pricing per chartmogul.com/pricing in May 2026.

Best for. Subscription founders past $1K MRR who want a single trustworthy MRR number and a cohort retention chart to send to advisors.

The one task it wins. Producing a defensible MRR / net-revenue-retention number across upgrades, downgrades, and refunds. Doing this in a spreadsheet is genuinely hard.

Alternative. Baremetrics for a comparable feature set, or Stripe Sigma if you’re comfortable writing SQL queries against your raw Stripe data.

Starting price
$59/mo Starter
Free tier
Up to $10K MRR
Start free with Chartmogul →

Audience & email

Where solo founders build the distribution that makes the product sellable.

BeehiivNewsletter

What it is. A newsletter platform built by ex-Morning Brew operators with monetization baked in: paid subscriptions, an internal ad network (Beehiiv Ads), referral programs (Boosts), a website builder, and an API. The pitch versus Substack is that Beehiiv takes 0% of paid subscription revenue — you only pay Stripe’s ~3% processing fee.

Pricing. Launch is free up to 2,500 subscribers. Scale is $43/month and lifts the limit to 100,000 subscribers while adding monetization tools, automations, and Ad Network access. Max is $96/month for white-label and 10 publications. Pricing per beehiiv.com/pricing in May 2026.

Best for. Solo founders treating an audience as a moat — building in public, running a content-led top of funnel, or eventually monetizing the list directly.

The one task it wins. Monetizing a newsletter without ceding 10% of revenue to the platform. At 1,000 paid subs at $5/month, the Substack 10% cut is $500/month; Beehiiv’s 0% cut plus a $43 plan is a clean $457 win.

Alternative. Substack for distribution off the back of its recommendation network, or ConvertKit / Kit for marketing-automation features Beehiiv does not match.

Starting price
$43/mo Scale
Free tier
Up to 2,500 subs

Related: Beehiiv pricing explained.

Start your newsletter on Beehiiv →

Affiliate link — we may earn a commission at no extra cost to you. Disclosure.

TypefullySocial Scheduling

What it is. A distraction-free writing and scheduling tool for X / Twitter threads, LinkedIn posts, Bluesky, Mastodon, and Threads. The interface intentionally hides the algorithmic feed so you write without doomscrolling. Includes thread analytics, AI-assisted writing, and an Evergreen queue that auto-reposts your best content.

Pricing. Free tier permits one scheduled post at a time. Starter is around $12.50/month for unlimited scheduling on multiple connected accounts. Creator and Team tiers add advanced analytics and collaboration. Pricing per typefully.com/pricing in May 2026; verify before purchase.

Best for. Founders building in public on X/LinkedIn who want to batch a week of posts in one session and stay off the apps the rest of the week.

The one task it wins. Drafting a long-form X thread with inline preview and pre-publish numbering — the native composer does not do this and the typical workaround (Notion or a doc) loses formatting on paste.

Alternative. Hypefury for more aggressive autoposting features and a similar price point, or Buffer if you also need Instagram, Facebook, and Pinterest in the same dashboard.

Starting price
~$12.50/mo Starter
Free tier
1 scheduled post
Try Typefully →

Operations

Staying organised and shipping consistently without burning out.

LinearIssue Tracking

What it is. A keyboard-driven issue tracker that replaced Jira inside many YC-backed startups. Opinionated workflow primitives — Projects, Cycles (sprints), and Triage — replace the configurable mess Jira ships with. Built-in GitHub integration auto-links commits to issues.

Pricing. Free tier covers unlimited members, 2 teams, and 250 issues with access to the agent platform beta. Basic is $10/user/month (annual) and removes the issue cap. Business is $16/user/month and adds Triage Intelligence. Pricing per linear.app/pricing in May 2026.

Best for. Developer-founders who want a fast keyboard-driven inbox of bugs and feature ideas without learning Jira’s workflow editor.

The one task it wins. Two-week Cycles for solo founders. You start a Cycle on Monday, drag in 8–12 issues, and have a hard endpoint Friday-next that forces shipping. Trello and GitHub Projects do not provide this scaffold.

Alternative. GitHub Projects (free, fine if your team is one person), Notion databases (slower but free), or Height for a similar opinion at a different price.

Starting price
$10/user/mo Basic
Free tier
250 issues

Related: Linear review.

Try Linear free →
NotionDocs & Wiki

What it is. A modular workspace that combines docs, databases, and a wiki into a single tool. For solo founders it acts as the system of record for everything outside the codebase: product roadmap, customer research notes, content calendar, SOPs, and a personal CRM. Notion AI ($8–$10/user/month add-on) handles first drafts and Q&A across pages.

Pricing. Free for personal use with unlimited pages and blocks, 10 guest collaborators, and 7-day page history. Plus is $10/member/month (annual) and adds unlimited file uploads, forms, sites, and 30-day history. Business is $20/member/month. Pricing per notion.com/pricing in May 2026.

Best for. The "second brain" layer of a solo founder’s operation — especially the founder who already lives in Notion personally.

The one task it wins. Customer research synthesis: a database of every user interview, tagged by theme, queryable, and linkable from a roadmap page. Doing this in a spreadsheet hits a wall around 20 interviews.

Alternative. Obsidian for a local-first, Markdown-based workflow you fully own, or Coda for a heavier-on-databases competitor.

Starting price
$10/member/mo Plus
Free tier
Personal use
Try Notion free →

Frequently asked questions

What’s the cheapest stack a solo SaaS founder can ship with?

Lovable Free or Cursor Hobby for building, Supabase Free (500MB Postgres, 50,000 monthly active users), Stripe at 2.9% + $0.30 per transaction with no monthly fee, PostHog Free (1M events plus 5,000 session recordings per month), Beehiiv Launch (free up to 2,500 subscribers), and Linear Free (250 issues). That stack carries no fixed monthly fee until you outgrow a tier — you only pay Stripe when you make money.

What if I’m a developer-founder who can already code?

Skip Lovable entirely and pay $20/month for Cursor instead. Pair it with Supabase Pro ($25/month once you exceed free-tier limits), Stripe for payments, PostHog for product analytics, Linear for issue tracking, and Beehiiv if you’re building an audience. Total fixed monthly cost lands around $90 once paid tiers kick in — below the revenue from two $49 subscriptions.

Which tools should I skip until I have revenue?

Chartmogul (free to $10K MRR anyway, and pointless before any paid customers exist), Notion Plus ($10/user/month; Notion Free is fine until your docs outgrow it), and Linear Basic ($10/user/month; Linear Free covers 250 issues, which is more than enough pre-launch). Pay for payments first (Stripe or Lemon Squeezy), then product analytics, then operations tooling. The order of paid spend should track the order you create value in.

Lemon Squeezy or Stripe for a new SaaS?

Lemon Squeezy if you’re selling internationally and do not want to handle VAT, GST, and sales-tax registration across 40+ jurisdictions — their 5% + $0.50 fee buys merchant-of-record coverage. Stripe if your customers are mostly US-based or you want lower fees (2.9% + $0.30) and full programmatic control. Note that Lemon Squeezy was acquired by Stripe in 2024 and the two now share infrastructure under Stripe Managed Payments; the choice is more about tax-burden allocation than vendor lock-in. See Lemon Squeezy vs Stripe for the full comparison.

Read next
The solo founder tech stack (2026)
Six layers, two recommended tools per layer, with a setup order that works for solo founders shipping in weeks.
Read the guide →

Get one SaaS build breakdown every week

The stack, prompts, pricing, and mistakes to avoid — for solo founders building with AI.

P
Jake McEwen, editor
One person, one editorial voice. If something on this page is wrong — pricing, a feature, a recommendation — the responsibility is mine. Tell me on LinkedIn and I’ll fix it.