The AI tools landscape is overwhelming. Every week there's a new product, a new platform, a new "game-changer" that's going to transform how you work. Most of them won't last a year. Some of them are genuinely useful. A very small number are essential. This guide is an honest assessment of the tools I actually use across four businesses - what each one does well, where it falls short, and how they fit together into a stack that one person can operate.
This is not a sponsored post. There are no affiliate links. I pay for every tool I mention here, and I've tried dozens of alternatives that didn't make the cut. What follows is a practical operator's view of what works in 2026, written for founders and small business owners who need to make good decisions without spending weeks evaluating options.
The Principle: Business Problem First, Tool Second
The single most important thing I can say about tools is this: never start with "we should use AI." Start with "what's the problem?" The right tool for a client communication problem might be Claude. For a data pipeline problem, it might be Make.com. For a reporting problem, it might be Supabase. For some problems, the right answer is a well-structured spreadsheet and a better process. Not everything needs AI, and not everything needs automation.
Tool-agnosticism is not indifference. It's discipline. I know Claude deeply. I know Make.com deeply. I know Supabase and Airtable and Vercel deeply. That depth of knowledge is what lets me choose the right tool for each specific problem rather than defaulting to whichever platform I used last. The worst implementations I see are from people who have a hammer and see every problem as a nail. The best implementations come from operators who understand a range of tools and match them thoughtfully to specific business needs.
With that principle established, here's what actually matters.
AI Assistants: Claude vs. OpenAI
Claude (Anthropic) is currently dominant in enterprise AI, holding 73% of the enterprise market as of March 2026 - up from 40% just three months prior. That growth is not accidental. Claude is strongest at the tasks that professional services firms and knowledge workers care about most: long-form writing, document analysis, nuanced reasoning, and sustained thinking across complex problems. The Team Plan integrates natively with Microsoft 365, which eliminates the friction of switching between tools. Projects give you persistent workspaces loaded with your own content. Skills let you build reusable workflows configured to your specific way of working.
For professional services, knowledge work, and any task that requires understanding context deeply, Claude is the strongest current option. The outputs read more naturally than competitors. The analysis is more thorough. The ability to maintain context across long conversations means you can work through complex problems without constantly re-explaining your situation.
OpenAI (ChatGPT/GPT-4) has a broader ecosystem of plugins and third-party integrations. It's stronger at image generation through DALL-E. It's more familiar to most people because it was first to market. For quick general tasks, brainstorming, and situations where you need broad capabilities rather than deep analysis, it remains a solid choice. The API is well-documented and widely supported, which matters if you're building custom integrations.
When to Use Which
Use Claude when: you need extended analysis of complex documents, writing that matches your specific voice and style, configured workflows that repeat across multiple tasks, enterprise-grade security and data handling, or deep reasoning about nuanced business problems.
Use OpenAI when: you need image generation, access to a broad plugin ecosystem, or your team already uses it and the switching cost isn't worth the disruption. Also useful for quick one-off tasks where configuration isn't important.
Honest take: Claude is where the serious enterprise wins are right now. The depth of analysis, the quality of writing, and the configurability through Projects and Skills make it the better choice for sustained professional use. But the market moves fast. Being skilled with both platforms is the right play. Learn the principles of good prompting and workflow design, and you can apply them regardless of which platform leads next year.
Automation: Make.com
Make.com connects your tools together. When something happens in Tool A, it triggers an action in Tool B. That sounds simple, and at its core it is. But the impact on operations is profound because most business processes are just sequences of steps across different tools, performed manually by people who would rather be doing something more valuable.
The visual workflow builder lets you design automations without writing code. You drag modules onto a canvas, connect them, and define the logic. It supports hundreds of integrations out of the box, and anything with an API can be connected with the HTTP module. The free tier is limited but sufficient for testing. Real usage starts at roughly £8 per month, which gives you enough operations to automate several business-critical workflows.
Real Automation
A new subscriber signs up via the website form. Make.com detects the webhook, then executes in sequence: Resend sends a confirmation email. Beehiiv adds the contact to the newsletter list. Airtable logs the subscriber with source, date, and tags. Slack sends a notification to the team channel.
Zero human involvement. Runs 24/7. Processes each new signup in under 10 seconds. The manual version of this workflow - checking the form, sending the email, updating the spreadsheet, posting in Slack - would take 5-10 minutes per subscriber. Multiply by 20 subscribers a week and you're saving 2-3 hours of pure administrative busywork.
Limitations are worth noting. Make.com gets complex when you need branching logic - if X then do Y, otherwise do Z, unless condition W applies. Error handling requires deliberate attention. If a module fails mid-scenario, you need to have thought about what happens to the data that's already been processed. And it's not suitable for critical financial processes without careful testing and monitoring. Automation removes human oversight, which is powerful but also means human errors in configuration can propagate at scale.
Data: Supabase vs. Airtable
Airtable is a spreadsheet that thinks it's a database. For non-technical users, it's genuinely excellent. The interface is intuitive, the views are flexible, and the collaboration features work well. It's the right choice for CRM, content calendars, project tracking, and any structured data that your team needs to interact with directly. The free tier covers basic usage. It gets expensive at scale - once you need more records, more automations, or more users, the pricing climbs quickly.
Supabase is a proper PostgreSQL database with an API, authentication, storage, and real-time subscriptions. The free tier is remarkably generous for a production database. It's the better choice for anything that needs real queries, relationships between tables, custom dashboards built on top of the data, or applications that need to scale. The trade-off is that it requires more technical comfort. You don't need to be a developer, but you need to understand basic database concepts - tables, rows, columns, relationships - and be willing to write occasional SQL queries or use the dashboard builder.
Choose Airtable When...
Your team needs to interact with the data directly, nobody writes SQL, and the data volume is moderate (under 50,000 records). Your use case is CRM, project management, content planning, or team coordination. You value a polished interface over raw power.
Choose Supabase When...
You need a proper backend for a web application, custom reporting that goes beyond what Airtable views can provide, relationships between data sets that require joins, or you're building something that needs to scale beyond thousands of records. You're comfortable with a more technical interface or willing to learn.
In practice, I use both. Airtable for lightweight CRM and quick operational tracking. Supabase for anything that powers a dashboard, feeds a website, or needs to handle real volume. They serve different purposes and trying to force one to do the other's job leads to frustration.
Building and Hosting: Astro, Next.js, Vercel
Vercel is the hosting platform. You push code, it deploys a website. The free tier handles most small business needs - personal sites, landing pages, even moderately trafficked applications. The developer experience is the best in the industry, which matters because the faster you can deploy changes, the more you iterate, and the more you iterate, the better the result.
Astro is a static site framework. It produces fast, lightweight websites that are ideal for content-heavy sites - blogs, guides, marketing pages, portfolio sites. This site runs on Astro. It loads quickly, ranks well in search, and is straightforward to maintain. If your website is primarily content with some interactive elements, Astro is almost certainly the right choice.
Next.js is a React framework. More powerful, more complex, and better suited for applications with dynamic content, user authentication, dashboards, and interactive features. If you're building something that users log into and interact with, Next.js is the standard. The learning curve is steeper, but AI tools like Claude can now generate most of the code you need from a clear description of what you want.
For most small businesses: Astro plus Vercel is all you need for web presence. Add Next.js only if you're building something genuinely interactive. Don't use a framework designed for complex applications to build a marketing website - it's like using a lorry to go to the shops.
The Stack in Practice
Individual tools are interesting. How they fit together is what matters. Here's what a complete lean operating stack actually looks like when a single person runs it across multiple businesses.
One Operator, Four Businesses
Claude for thinking and writing. Every client deliverable, every article, every analysis starts here. Configured with Projects per client and Skills per task type. The thinking partner and production engine.
Make.com for automation. Subscriber flows, CRM updates, notification routing, data synchronisation between tools. Roughly 15-20 active scenarios running across all businesses.
Supabase for data and dashboards. Client databases, application backends, reporting infrastructure. The structured data layer that powers everything else.
Vercel + Astro for websites. Marketing sites, content hubs, landing pages. Fast deployment, zero maintenance overhead.
Beehiiv for newsletters. Content distribution, subscriber management, analytics. Handles the email layer without complexity.
Circle for community. Paid membership, events, discussions. The relationship and engagement layer.
Airtable for lightweight CRM. Contact tracking, deal stages, activity logging. The quick-reference operational layer.
Total monthly cost: approximately £200-400. Total full-time staff required to operate: one.
The point is not the specific tools. Tools change. The point is that the right combination of tools, configured properly and connected through automation, lets a single operator run at the scale of a small company. The leverage comes from the system, not from any individual component. Replace any one tool with a competitor and the system still works. That's what tool-agnosticism actually means in practice.
Enjoyed this? Join the newsletter.
One email a week. What I'm building, learning, and what's actually working. No fluff.
Free. Unsubscribe anytime.
How to Evaluate Any New Tool
New tools appear constantly. The temptation is to try everything. The discipline is to evaluate ruthlessly and adopt reluctantly. Here are the questions I ask before adding anything to my stack.
Does it solve a problem I actually have right now? Not a problem I might have in six months. Not a problem I've read about other people having. A problem I am currently experiencing that is costing me time, money, or quality. If the problem is hypothetical, the tool is premature.
Can I be productive with it in under an hour? The best tools have a short time to first value. If a tool requires a week of setup before it's useful, the switching cost might outweigh the benefit. Look for tools where you can get a meaningful result in your first session.
Does it integrate with what I already use? A tool that exists in isolation creates more work, not less. Every tool should connect to your existing workflow, either natively or through Make.com. If it requires copy-pasting data between systems, it's adding friction rather than removing it.
What happens to my data if the company disappears? Startups fail. Products get acquired and sunset. Export your data regularly and never let a single tool become the only place where critical business information lives. If you can't export your data in a standard format, you don't own it.
Am I buying it because it's useful, or because the demo was impressive? This is the hardest question to answer honestly. Good demos sell tools. Good tools sell themselves through daily use. Trial everything before committing. Use it on real work for at least two weeks before deciding. The excitement of a demo fades quickly. The utility of a genuinely good tool grows over time.
Subscription creep is real and insidious. Every tool costs "only" £10 or £20 a month. Fifteen tools later, you're spending £200 a month on subscriptions, half of which you log into once a quarter. Audit your tools quarterly. Cancel anything you haven't used in 30 days. The lean stack is the maintainable stack, and the maintainable stack is the one that actually creates value.