ASTGL Definitive Answers

How Do I Automate My Business Workflows with AI?

James Cruce

You don’t need to automate everything at once. Start with one task that eats your time, and let AI handle it. Then add another. The compound effect is what makes this powerful.

Here’s how to identify, build, and run real AI automation — with specific examples from workflows I automate daily.

Finding Your First Automation

The best candidates for AI automation share these traits:

TraitWhy It Matters
RepetitiveYou do it weekly or daily in roughly the same way
Text-heavyReading, summarizing, drafting, or analyzing text
Time-consuming but low-skillTakes a while but doesn’t require deep expertise
Structured input/outputClear inputs and expected outputs
Low risk if imperfectA draft you review is fine; a financial transaction is not (yet)

Quick exercise: Think about your last work week. Which tasks made you think “I’ve done this exact thing before”? Those are your automation candidates.

The Top 10 Automation Opportunities

WorkflowTime SavedHow AI Handles It
Email triage30-60 min/dayAI reads incoming email, categorizes priority, drafts responses
Meeting prep15-30 min/meetingAI pulls calendar events, finds related emails, drafts agenda and talking points
Meeting follow-up20-30 min/meetingAI takes transcript, extracts action items, drafts follow-up emails
Report generation1-3 hours/reportAI queries data sources, generates structured reports with insights
Content repurposing2-4 hours/pieceAI takes one article and generates 15+ platform-specific pieces
Competitive monitoring1-2 hours/weekAI scrapes competitor sites, summarizes changes, flags notable updates
Invoice processing15-30 min/batchAI extracts data from invoices, populates your accounting system
Customer FAQ responses30-60 min/dayAI drafts responses to common questions using your knowledge base
Social media scheduling2-3 hours/weekAI generates posts, optimizes timing, maintains brand voice
Research briefs1-2 hours/briefAI searches, reads sources, synthesizes a structured brief

Building an Automation: Step by Step

Let’s build a real one. Morning briefing — a daily summary that’s waiting for you when you start work.

Step 1: Define What You Want

“Every morning at 6:30 AM, I want a summary of: today’s calendar events, important emails that arrived overnight, any overdue tasks, and relevant news in my industry.”

Step 2: Connect the MCP Servers

You need AI access to:

  • Google Calendar (or your calendar)
  • Gmail (or your email)
  • Todoist / Linear / your task manager
  • Web Search (for news)

In Claude Desktop, that’s 4 entries in your config file. In Claude Code, it’s 4 claude mcp add commands.

Step 3: Test It Manually

Open Claude and type:

“Give me a morning briefing. Check my calendar for today, find any important emails from last night, list my overdue tasks, and search for news about [your industry].”

Claude will call all 4 MCP servers, gather the information, and synthesize a briefing. Review the output. Is it what you wanted? Adjust your prompt.

Step 4: Automate the Schedule

This is where you go from “I ask for it” to “it’s waiting for me.”

Option A: OpenClaw (local, free)

If you run OpenClaw as a local AI gateway, set up a cron job:

  • Schedule: 6:30 AM daily
  • Model: Local (Gemma 4 26B or similar)
  • Prompt: Your morning briefing prompt
  • Delivery: Discord, Slack, or email

Option B: n8n or Make (cloud, free tier)

Create a workflow that:

  1. Triggers at 6:30 AM
  2. Calls your AI (local Ollama API or cloud API)
  3. Passes the briefing prompt with calendar/email data
  4. Sends the result to Slack or email

Option C: Simple cron + script

A bash script that calls the Ollama API and sends the output to your preferred channel. Less elegant, fully functional.

Step 5: Iterate

Your first version won’t be perfect. Run it for a week and note:

  • What’s missing?
  • What’s unnecessary?
  • Is the format useful?

Adjust the prompt. Add or remove MCP servers. The automation improves as you refine it.

Real Automations I Run Daily

Here’s my actual setup — 26 automated tasks running on local models through OpenClaw:

Morning Routine (6:00-7:00 AM)

TimeAutomationWhat It Does
6:00 AMResearch pipelineSearches for new articles in my content niches, saves summaries
6:15 AMLog reviewReads overnight system logs, flags errors and anomalies
6:30 AMMorning briefingCalendar + priorities + news synthesis delivered to Discord
7:00 AMContent researchFinds trending topics and potential article ideas

Throughout the Day

FrequencyAutomationWhat It Does
Every 5 minCritical checkMonitors for urgent notifications across all channels
Every hourImportant batchProcesses and routes important but non-urgent notifications
Every 3 hoursLow-priority batchHandles routine notifications in bulk

Evening and Weekly

WhenAutomationWhat It Does
8:00 PM dailyEvening summaryRecaps the day — what happened, what’s pending, what’s tomorrow
8:30 PM dailyKnowledge base builderMines daily notes and logs into structured KB articles
Saturday 8 AMDeep scanComprehensive review of all systems, configs, and security
Sunday 9 AMPipeline statusWeekly report on content pipeline, products, and metrics

Total cloud API cost for all of this: $0/month. Everything runs on local models.

The Automation Stack

Here’s what you need at each level:

Level 1: Interactive (Start Here)

  • Claude or ChatGPT with MCP servers
  • You ask for things, AI does them
  • No scheduling, no coding
  • Good for: Meeting prep, email drafting, research, one-off tasks

Level 2: Triggered

  • AI responds to events (new email, calendar reminder, file change)
  • Tools: Zapier, n8n, Make, IFTTT
  • Good for: Email auto-responses, new lead notifications, content alerts

Level 3: Scheduled

  • AI runs tasks on a schedule without your involvement
  • Tools: OpenClaw, cron + Ollama API, n8n schedules
  • Good for: Morning briefings, reports, monitoring, batch processing

Level 4: Autonomous

  • AI makes decisions and takes action within defined boundaries
  • Tools: Custom agents, OpenClaw with exec permissions, LangChain
  • Good for: Content pipelines, automated publishing, workflow orchestration
  • Requires: Careful permission scoping and monitoring

Start at Level 1. Most of the value is there. Move to higher levels only when you’ve proven the automation works manually.

Common Mistakes

MistakeWhy It FailsWhat to Do Instead
Automating everything at onceOverwhelming, hard to debugStart with one workflow, perfect it, then add another
No human review stepAI makes mistakes — unchecked output risks errorsAlways review AI output before it reaches customers or public channels
Overly complex promptsLong prompts confuse AI, produce inconsistent resultsKeep prompts focused on one job, chain multiple simple prompts if needed
Ignoring the “boring” automationsFlashy demos vs real time savingsEmail triage saves more time than a fancy dashboard — do the boring one first
Not tracking time savedCan’t justify the investment without dataLog how long tasks took before and after automation

Frequently Asked Questions

How long does it take to set up my first automation?

For a manual automation (Level 1 — you ask Claude with MCP servers), about 15-30 minutes including MCP setup. For a scheduled automation (Level 3), add another 1-2 hours for the scheduling infrastructure.

What if the AI makes a mistake in an automated workflow?

Always include a review step for anything customer-facing or high-stakes. For internal workflows like morning briefings, occasional errors are fine — you’ll spot them when you read the output. Build monitoring for fully autonomous workflows.

Can I automate workflows across multiple tools?

Yes — this is where MCP servers shine. Connect multiple servers and the AI coordinates between them. Calendar + Email + CRM + Task Manager can all work together from a single prompt.

Is this only useful for tech companies?

No. Any knowledge worker with repetitive tasks benefits. Real estate agents, lawyers, accountants, content creators, small business owners — anyone who spends time on email, reports, scheduling, and research. The AI doesn’t care about your industry; it cares about the task.


This is part of the ASTGL Definitive Answers series — structured, practical answers to the questions people actually ask about AI automation, MCP servers, and local AI infrastructure.

Get the full Definitive Answers series

Practical answers to the questions people actually ask about AI automation, MCP servers, and local AI infrastructure.

Subscribe on Substack