
Table of Contents
If you have ever wished a task would just handle itself, Make.com is your answer. This Make.com tutorial shows you how to connect apps, trigger actions automatically, and plug Claude AI into the middle of it all without writing a single line of code.
Make.com is a visual automation platform. This Make.com tutorial focuses on the features that matter most for building AI workflows by dragging, dropping, and connecting app modules on a canvas. You do not need a developer. You do not need to understand APIs at a deep technical level. You just need to understand what you want to happen and in what order.
By the end of this Make.com tutorial, you will have a real working AI workflow that does something genuinely useful. Not a toy example. A real automation you can run every day.
What Is Make.com and Why Does It Matter?
Make.com (formerly Integromat) is a no-code automation platform that connects over 1,500 apps and services. Think of it as the plumbing between your digital tools. When something happens in one app, Make.com triggers an action in another.
What makes Make.com more powerful than simpler tools like Zapier is its visual scenario builder. You see your entire workflow as a diagram on screen. Every app is a module. Every connection is a line. Complex multi-step workflows that would take a developer days to build can be assembled in Make.com in an afternoon.
Adding Claude AI to that equation makes Make.com even more powerful. Instead of just moving data between apps, your workflows can now read documents, write responses, summarise content, classify information, and make intelligent decisions automatically. That combination is what this Make.com tutorial is built around — and why it is worth your time.
For a broader look at how AI agents and automation tools work together, read the Claude AI to Earn Money Guide: 4 Proven Ways That Actually Work.
Step 1: Set Up Your Make.com Account
The first step in this Make.com tutorial is creating your account. Go to make.com and sign up for a free account. The free plan gives you 1,000 operations per month, which is more than enough to build and test everything in this guide.
Once you are logged in, you will see the Make.com dashboard. The three things you need to understand from the start:
Scenarios — A scenario is a workflow. It is the sequence of steps that Make.com runs automatically. You can have multiple scenarios running simultaneously on different schedules.
Modules — A module is a single action or trigger inside a scenario. “Watch new emails in Gmail” is a module. “Create a row in Google Sheets” is a module. “Send a message to Claude AI” is a module.
Operations — Every time a module runs, it uses one operation from your monthly allowance. A scenario with five modules that runs ten times uses fifty operations.
That is genuinely all you need to understand to start building in this Make.com tutorial.
Step 2: Understand the Make.com Interface
Before building your first workflow, spend five minutes getting comfortable with the interface. This Make.com tutorial moves faster once you know where everything lives.
The Scenario Canvas The large blank area in the centre of the screen is your canvas. This is where you build your workflow visually by adding and connecting modules.
The Module Library: Click the large plus button on the canvas to open the module library. Every app Make.com connects to lives here. Search by app name or browse by category.
The Scenario Settings On the left side of the canvas, the settings panel controls when your scenario runs: immediately when triggered, on a schedule (every 15 minutes, hourly, daily), or manually when you click Run.
The Run Once Button At the bottom of the canvas, the Run Once button executes your scenario a single time for testing. Use this constantly while building. It shows you exactly what data flows through each module so you can spot errors before switching to live operation.
This Make.com tutorial uses Run Once at every step so you always know each module works before moving forward.
Step 3: Connect Your First Apps
Every scenario starts with a trigger module. The trigger is what starts the workflow. In this Make.com tutorial, you will build an AI email summariser: Claude reads incoming emails and produces a one-paragraph summary that saves to a Google Sheet.
Add the Gmail trigger module:
- Click the plus button on the canvas
- Search for Gmail
- Select “Watch Emails”
- Click “Add” to create a new Gmail connection
- Sign in with your Google account and grant permissions
- Set the folder to “Inbox”
- Set “Maximum number of results” to 1
This module now watches your Gmail inbox and triggers the scenario every time a new email arrives. One of the most satisfying moments in this Make.com tutorial is seeing that first green tick appear on a connected module.
Add the Claude AI HTTP module:
Make.com connects to Claude through an HTTP module that calls the Anthropic API directly. This Make.com tutorial uses the HTTP module because it gives you full control over your Claude prompt.
- Click the plus button to add the next module
- Search for HTTP
- Select “Make a request”
- Set the URL to:
https://api.anthropic.com/v1/messages - Set Method to POST
- Add headers:
x-api-key: your-anthropic-api-keyanthropic-version: 2023-06-01content-type: application/json
- In the Request content field, add this JSON body:
json
{
"model": "claude-sonnet-4-6",
"max_tokens": 300,
"messages": [
{
"role": "user",
"content": "Summarise this email in one clear paragraph. Focus on the key point, any action required, and who sent it. Email: {{1.snippet}}"
}
]
}
The {{1.snippet}} is a Make.com variable that pulls the email text from your Gmail trigger module. This is how data flows between modules in Make.com — variables reference output from previous steps.
For a deeper understanding of how to get the best outputs from Claude, read the Prompt Engineering Guide.
Step 4: Parse the Claude Response
When Claude responds, the output arrives as a JSON object. Make.com needs to extract the actual text from that response before passing it to the next module.
Add a JSON Parse module:
- Click the plus button after your HTTP module
- Search for JSON
- Select “Parse JSON”
- In the JSON string field, map it to the body output from your HTTP module
- Click “Determine data structure” and paste a sample Claude response to let Make.com understand the format
After parsing, Make.com can see individual fields inside the Claude response, including content[].text which is where the actual summary lives.
This step is where many Make.com tutorial articles get vague. The key is using “Determine data structure” with a real sample response so Make.com maps the fields correctly. Once it does, you can reference content[1].text in any subsequent module as a clean variable.
Step 5: Save the Summary to Google Sheets
Now that you have Claude’s summary as a clean variable, the final step saves it to a Google Sheet for easy reference.
- Add a Google Sheets module
- Select “Add a Row”
- Connect your Google account
- Select the spreadsheet and sheet where you want summaries saved
- Map the columns:
- Column A:
{{1.from[].name}}(sender name from Gmail) - Column B:
{{1.subject}}(email subject from Gmail) - Column C:
{{3.content[1].text}}(Claude’s summary from the JSON parse module) - Column D:
{{1.date}}(date received from Gmail)
- Column A:
Click Run Once. Send yourself a test email. Watch the scenario run. Within thirty seconds, the email summary should appear as a new row in your Google Sheet.
That is your first complete AI workflow. This Make.com tutorial just took you from zero to a running AI automation. A real, working automation that reads your emails and produces intelligent summaries automatically.
Step 6: Schedule Your Scenario
Right now your scenario runs once when you click Run Once. To make it automatic, you need to schedule it.
At the bottom of the Make.com canvas, toggle the scenario from OFF to ON. Then click the scheduling clock icon and set how frequently it should run. For email monitoring, every 15 minutes is a sensible interval.
Once scheduled and active, Make.com checks your inbox every 15 minutes, processes any new emails through Claude, and adds summaries to your Google Sheet without any manual input from you.
This is the core value of combining Make.com with Claude AI: the automation runs continuously in the background while you focus on the work that actually needs your attention.
Step 7: Build a Second Workflow Using This Make.com Tutorial
Now that you understand the pattern, here is a second, more advanced workflow you can build using exactly the same skills. This one is particularly useful for content creators, marketers, and business owners.
Workflow: AI Content Repurposing System
What it does: When you add a new blog post URL to a Google Sheet, Make.com fetches the content, sends it to Claude, and automatically generates five social media posts saved back to the same sheet.
Modules in order:
- Google Sheets — Watch Rows: Triggers when a new row is added to your content sheet
- HTTP — Fetch URL content: Fetches the blog post content from the URL in the new row
- HTTP — Claude API call: Sends the blog content to Claude with this prompt:
json
{
"model": "claude-sonnet-4-6",
"max_tokens": 1000,
"messages": [
{
"role": "user",
"content": "Read this blog post and generate 5 social media posts from it. Each post should be under 280 characters, engaging, and include a relevant hashtag. Number each post 1 to 5. Blog content: {{2.data}}"
}
]
}
- JSON — Parse Claude response: Extract the text content from Claude’s response
- Google Sheets — Update Row: Write the five social posts back to the same row in a new column
The entire workflow runs automatically every time you add a new blog URL to your sheet. One URL in, five social posts out. No manual work after the initial setup.
Step 8: Common Make.com Tutorial Mistakes and How to Avoid Them
Not using Run Once during building; always test each module individually before adding the next one. Make.com shows you exactly what data each module outputs when you run it. Skipping this step means debugging a five-module scenario when the error could be in module two.
Mapping variables incorrectly When you reference data from a previous module, always use Make.com’s variable picker rather than typing variable names manually. The picker shows you the exact field names and formats available from each previous module. Manual typing leads to silent errors where the variable returns empty.
Ignoring error handlers Production workflows need error handlers on every HTTP module. Add a “Break” or “Ignore” error handler by right-clicking any module and selecting “Add error handler.” Without this, one failed API call stops your entire scenario.
Not checking operation usage Each module run uses one operation. A scenario with four modules that processes fifty emails uses two hundred operations. Monitor your usage in the Make.com dashboard to avoid hitting your plan limit mid-month.
Using the wrong data format for API calls Claude’s API expects JSON in the request body. Make sure your HTTP module has the content-type header set to application/json and that your body is valid JSON. Invalid JSON causes a 400 error that looks confusing but has a simple fix.
Real Workflows You Can Build After This Make.com Tutorial
Once you are comfortable with the basics this Make.com tutorial covered, here are the next workflows worth building:
Customer support triage — New support emails trigger Claude to classify urgency and draft a response. The draft goes to a Slack channel for human approval before sending. Saves two to three hours of customer service time per day.
Meeting notes summariser — Transcripts from Zoom or Teams meetings are added to a Google Drive folder. Make.com detects the new file, sends the transcript to Claude, and saves a structured summary with action items to Notion.
Lead qualification system — New form submissions from your website trigger Claude to score the lead based on their answers and send a personalised follow-up email via Gmail. High-scoring leads also get a notification in Slack.
Weekly report generator — Every Friday, Make.com pulls data from your project management tool, sends it to Claude, and emails a formatted weekly status report to your team automatically.
Content brief creator — A new keyword added to a Google Sheet triggers Claude to research the topic and produce a full content brief with target audience, outline, and suggested internal links. Brief appears in a Notion database ready for your writer.
Each of these builds on exactly what this Make.com tutorial taught you: a trigger, one or more Claude API calls, response parsing, and an output action.
Make.com vs Zapier: Which Should You Choose?
Since this Make.com tutorial focuses on Make.com, it is worth a quick comparison so you know when each tool is the right choice.
Choose Make.com when: Your workflow has more than two steps, you need to transform or filter data between modules, you want to run logic branches (if this then that else something else), or you need to process multiple items in a single run (like ten emails at once instead of one at a time).
Choose Zapier when: You need to get something running in ten minutes with minimal learning curve, your workflow is genuinely simple (trigger and one action), or the app you need is only available on Zapier.
For an AI automation agency or any serious workflow automation, Make.com is the stronger long-term choice. The learning curve is steeper, but the capability ceiling is significantly higher.
For a full guide on building a service business around these automation skills, read the AI Automation Agency guide on AI Pathway Lab.
Connecting This Make.com Tutorial to Your Bigger AI Skill Set
Make.com is one layer of the automation stack. Claude AI is the intelligence layer. Understanding how they work together is what makes you genuinely useful to businesses looking for AI automation help in 2026.
The next step after this Make.com tutorial is understanding how to build more sophisticated Claude integrations through the API. The Claude API Tutorial for Complete Beginners: Best Hands-On Guide covers everything from your first API call to building multi-turn conversations and streaming responses, all of which can plug directly into your Make.com workflows.
For a full picture of the AI tools available in 2026 and how to choose between them, the 10 AI Agent Tools Must Try in 2026 – Stop Wasting Time Without Them is the companion piece to this tutorial and covers the broader automation tool landscape in detail.
If you are thinking about turning these skills into income, the Claude AI to Earn Money guide on AI Pathway Lab maps out the specific paths from automation knowledge to paid work.
The official Make.com documentation is your best companion to this Make.com tutorial. Visit make.com/en/help where you will find hundreds of pre-built scenario templates to learn from and adapt.
Frequently Asked Questions About This Make.com Tutorial
Do I need coding skills to follow this Make.com tutorial?
No, Every step in this guide uses Make.com’s visual interface and pre-built app modules. The only thing that looks like code is the JSON body for the Claude API call, and that is simply a copy-paste template you fill in with your own prompt text.
Is Make.com free to use?
Make.com has a free plan that includes 1,000 operations per month and up to five active scenarios. That is more than enough to build and run everything in this Make.com tutorial. Paid plans start at nine dollars per month for ten thousand operations.
Do I need a Claude API key for this Make.com tutorial?
Yes. The Claude integration in this guide uses the Anthropic API directly. You will need an API key from console.anthropic.com. New accounts receive a small free credit that covers extensive testing.
How long does it take to build the email summariser from this Make.com tutorial?
For a complete beginner following this Make.com tutorial, the email summariser takes about ninety minutes the first time, including account setup, connecting apps, and testing. The second scenario you build takes about thirty minutes because the pattern is familiar.
Can I use Make.com for business automation without any technical background?
Yes. Make.com is used by marketing teams, operations managers, small business owners, and freelancers who have zero development background. The visual interface is designed specifically for non-technical users. This Make.com tutorial is aimed exactly at that audience.
What is the difference between Make.com and n8n?
n8n is an open-source alternative to Make.com that you can self-host for free. It offers more technical flexibility but requires more setup and a basic understanding of how to run a server. Make.com is fully hosted and managed, which makes it faster to start with and easier to maintain for most users.
Can I connect Make.com to tools my company already uses?
Make.com connects to over 1,500 apps including Google Workspace, Microsoft 365, Slack, Notion, HubSpot, Salesforce, Jira, Trello, Airtable, and hundreds more. If your team uses it, Make.com almost certainly has a module for it.
Build Your First Workflow Today
This Make.com tutorial gave you everything you need to go from a blank canvas to a running AI workflow. Every skill in this Make.com tutorial transfers directly to more advanced automations. You connected Gmail to Claude AI to Google Sheets. You understood how triggers, modules, and variables work. You built a real automation and learned the pattern that scales to dozens of different workflows.
The gap between people who talk about AI automation and people who actually use it comes down to one thing: building the first scenario. Everything after that is repetition and refinement of the same skills this Make.com tutorial just gave you.
Open Make.com now. Follow this Make.com tutorial step by step. Add the Gmail trigger. Connect Claude. Run it once. Watch it work.
That moment when your first AI workflow runs successfully is the moment everything this Make.com tutorial taught you clicks into place. Go build it.
For more practical guides on AI tools, automation, and income building with AI, explore Blogs AI Pathway Lab. For the official Make.com platform and template library, visit make.com.