Build Your First AI Agent in Make.com (No-Code Required) — 2026 Step-by-Step Tutorial

Learn how to build your first AI agent in Make.com from scratch with zero coding. Step-by-step guide covering setup, model configuration, tools, knowledge, and a real email triage workflow.

TL;DR: This tutorial walks you through building your first AI agent in Make.com — from account creation to a working agent that reads emails, decides what to do, and takes action. No code required. Total time: about 30 minutes.


Why Build AI Agents in Make.com?

Make.com (formerly Integromat, acquired by Celonis) launched its next-generation AI Agents platform in February 2026 — and the community response has been explosive. The Make Community challenge “Designing Intelligent Workflows with Make AI Agents” drew hundreds of submissions by June 2026 [1], and Make’s own “best AI agent platforms” roundup ranks it as the #1 visual platform for building autonomous agents [2].

If you’ve been reading the Reddit threads — “What’s the fastest way to learn AI workflow automation in 2026?” and “Best AI Agent Building Tools in 2026” — you’ve seen Make mentioned again and again as the go-to for non-developers who want production-ready AI agents without fighting with JSON schemas and API authentication [3].

Unlike n8n (which requires self-hosting for serious use) or Zapier (which limits complex branching), Make sits in the sweet spot: visual-first, cloud-hosted, with 3,000+ app integrations and a brand-new AI Agent builder that supports OpenAI GPT-4o, Anthropic Claude Opus 4.8, and Google Gemini 2.5 Pro [4].

This guide is for absolute beginners. If you’ve never opened Make.com before, you’ll have a working AI agent by the end of this tutorial.

If you’d rather start with a broader overview of Make, check our Make Review 2026. For a comparison of Make vs n8n, see n8n vs Make (2026).


What You’ll Build

By the end of this tutorial, you’ll have an AI agent that:

  1. Receives an email (simulated for testing, real Gmail for production)
  2. Decides what to do using an AI model’s reasoning
  3. Uses tools — like web search and a Google Sheet lookup
  4. Responds or escalates based on the content

This is the same pattern used by teams running real customer support triage, lead qualification, and internal help desk automations on Make [5].


Prerequisites

Item Cost Where to Get It
Make account (Free or Core plan) Free ($0/mo) or Core ($12/mo) make.com/signup
OpenAI API key (or Claude/Gemini) ~$0.50–2 for this tutorial platform.openai.com/api-keys
Web browser Free You’re using one right now

About costs: Make’s Free plan gives you 1,000 credits/month [9] — enough to complete this tutorial and run basic tests. AI agent operations consume credits faster than regular modules (AI actions cost ~5–10 credits per run), so for ongoing use you’ll want the Core plan at $12/month [9]. The OpenAI API will cost roughly $0.20–1.00 for this tutorial.


How Make AI Agents Work — The Architecture

Before diving in, it helps to understand Make’s agent architecture. Unlike n8n’s single “AI Agent” node that lives inside a workflow, Make treats agents as first-class configurable entities managed from a dedicated configuration panel:

┌─────────────────────────────────────────────┐
│          Make AI Agent Configuration          │
│  ┌─────────┐  ┌──────────┐  ┌────────────┐  │
│  │ Model   │  │ Tools    │  │ Knowledge  │  │
│  │ GPT-4o  │→ │ Gmail   │→ │ Upload PDFs│  │
│  │ Claude  │  │ Sheets  │  │ URLs       │  │
│  │ Gemini  │  │ Slack   │  │ Confluence │  │
│  └─────────┘  │ MCP     │  └────────────┘  │
│               └──────────┘                   │
│  ┌──────────────────────────────────────────┐│
│  │ Instructions (System Prompt)             ││
│  │ "You are a support agent..."             ││
│  └──────────────────────────────────────────┘│
└─────────────────────────────────────────────┘

Then you invoke the agent from a Make scenario (workflow) using a single Make AI Agents > Run an agent module [6]. This separation means you can reuse the same agent across multiple scenarios without duplicating configuration.


Step-by-Step Tutorial

Step 1: Create Your Make Account

  1. Go to make.com/en/register
  2. Sign up with your email, Google, or Apple account
  3. Confirm your email address
  4. You land on the Make dashboard — click Scenarios in the left sidebar

The Free plan gives you 1,000 credits. No credit card required.

Step 2: Create Your AI Agent

  1. In the left sidebar, click AI Agents (a robot icon with a sparkle)
  2. Click the Create agent button
  3. Name your agent: Email Triage Assistant
  4. Write a description: Handles incoming support emails, categorizes them, and responds or escalates

Step 3: Choose Your AI Model

In the Model configuration section:

  1. Click the Model dropdown
  2. You’ll see supported providers: OpenAI, Anthropic, Google, Groq, and custom endpoints via OpenRouter [4]
  3. Select OpenAI > gpt-4o (best balance of intelligence and speed)
  4. Click Add credential and paste your OpenAI API key
  5. Under Temperature, set 0.3 — lower temperature means more deterministic, predictable outputs (critical for agent workflows where consistency matters)

Pro tip: For production workflows that need faster responses, try gpt-4o-mini (20x cheaper, nearly as capable for simple tasks) or Claude Opus 4.8 from Anthropic if your agent handles long documents or complex reasoning.

Step 4: Write Your Agent’s Instructions (System Prompt)

This is the most important step. The instructions tell your agent who it is and how to behave:

  1. In the Instructions field, paste:
You are an email triage assistant for a SaaS company. You help process incoming support emails.

Rules:
1. Read each email carefully and extract: the customer's name, their issue category, and urgency level
2. If the email contains a question about pricing or billing → respond with the pricing FAQ template
3. If the email contains a technical issue → log it to the "Technical Issues" Google Sheet and escalate to the engineering team
4. If the email is a general inquiry → respond with a friendly acknowledgment and link to the help center
5. Always classify urgency as: Low (can wait 24h), Medium (respond within 4h), or High (respond immediately)
6. If you cannot determine the intent → mark as "Needs human review" and escalate

Output format:
---
Category: [billing/technical/general/escalation]
Urgency: [Low/Medium/High]
Summary: [2-3 sentence summary]
Action: [what you did or recommend]
---
  1. Click Save

Make’s agent configuration supports rich instructions — you can include role definitions, output formatting rules, edge case handling, and even personality guidelines [6].

Step 5: Add Tools (Your Agent’s Capabilities)

Make AI Agents support three types of tools: module tools, scenario tools, and MCP tools [7].

Add a Google Sheets Tool

  1. In the agent configuration, scroll to Tools
  2. Click Add tool > Module
  3. Search for Google Sheets
  4. Select Google Sheets > Search Rows (to look up customer info)
  5. Connect your Google account and select a test sheet
  6. Name the tool: Look up customer info

Add a Web Search Tool

  1. Click Add tool > Module again
  2. Search for HTTP or use a SerpAPI integration
  3. Alternatively, use the built-in Make AI Agents > Search web module (available in the new agent architecture)
  4. Name the tool: Search the web for answers

Add an MCP Tool (Optional — Advanced)

As of June 2026, Make supports MCP (Model Context Protocol) tools, letting your agent access external MCP servers — databases, CRMs, internal APIs — as first-class tools [8]. This is bleeding-edge functionality; for this tutorial, stick with native module tools.

Step 6: Add Knowledge (Optional)

Make AI Agents support knowledge bases — you can upload PDFs, link Confluence pages, or add URLs for your agent to reference:

  1. In the agent configuration, scroll to Knowledge
  2. Click Add knowledge source
  3. Upload a PDF of your product FAQ or support documentation
  4. The agent will automatically reference this knowledge when answering questions

Step 7: Build the Scenario (Workflow)

Now let’s wire your agent into a real workflow:

  1. Go back to Scenarios in the left sidebar
  2. Click Create a new scenario
  3. Name it: Email Triage

Add a Trigger

  1. Click the + on the canvas to add a module
  2. Search for Webhooks
  3. Select Webhooks > Custom webhook
  4. Click Add and then Copy address to clipboard — this is your test endpoint
  5. Rename the module: Incoming Email

Add the AI Agent Module

  1. Click the + after the webhook module
  2. Search for Make AI Agents (New)
  3. Select Make AI Agents (New) > Run an agent
  4. In the Agent field, select the Email Triage Assistant you created
  5. In the Query field, map it from the webhook body: click the data pill icon and select {{1.data}} (the raw email content from the webhook)
  6. Under Output, select Text to get a plain-text response

Your scenario canvas should now look like:

Make scenario editor showing Webhook → Make AI Agents (New) flow

Two modules connected: a webhook trigger feeding into the AI agent module.

Step 8: Add Conditional Routing (Decision Making)

  1. Click the + after the AI agent module
  2. Add a Router module
  3. The router creates parallel paths — configure filters on each path:
    • Path 1: Filter by {{3.text}} contains "billing" → Send to Slack #billing channel
    • Path 2: Filter by {{3.text}} contains "technical" → Send to Slack #engineering channel
    • Path 3: Filter by {{3.text}} contains "escalation" → Send an email to [email protected]
    • Default path: Send a Slack message with “New inquiry – please review”

Step 9: Test Your Agent

  1. Click Save (bottom-left of the scenario editor)
  2. Click the Run once button (play icon at the bottom)
  3. The scenario waits for webhook input
  4. Send a test request using curl or a tool like Postman:
curl -X POST https://your-webhook-url.make.com/abcdef123 \
  -H "Content-Type: application/json" \
  -d '{
    "subject": "Can'\''t log in to my account",
    "from": "[email protected]",
    "body": "Hi, I have been trying to log in since yesterday but I keep getting an error. My account is [email protected]. Please help. - John"
  }'

Or use the simpler built-in test panel:

  1. In Make’s scenario editor, click the Run once button
  2. A test panel appears — paste your email text there directly
  3. Click Submit
Step Action Expected Result
1 Send test email via webhook or test panel Scenario triggers and starts executing
2 AI agent module processes the email Module turns green (success)
3 Agent returns classified output Text showing category, urgency, summary, action
4 Router processes the agent’s output Correct Slack channel or email is triggered
5 Final action executes Slack message appears or email is sent

Troubleshooting

Problem Likely Cause Fix
Agent returns nothing Empty or malformed query input Check the webhook data mapping — {{1.data}} should contain raw text
“Model not responding” error Invalid API key or quota exceeded Verify your OpenAI key in Make’s credential manager
Router doesn’t trigger any path Filter text doesn’t match agent output Check the agent’s actual output text in the execution log
Agent gives wrong answers Instructions are too vague Make your system prompt more specific with examples
“Credits exceeded” on Free plan Too many test runs Wait for monthly reset or upgrade to Core ($12/mo)
MCP tool not connecting Server URL or auth incorrect Double-check the MCP server configuration in Make’s settings

Real-World Use Case: Full Email Triage Agent

Here’s the complete flow your agent will run in production:

Step Module Purpose
1 Gmail Trigger (New Email) Watches for new emails in your support inbox
2 Make AI Agent > Run an agent Your Email Triage Assistant reads, classifies, and decides action
3 Router (3 paths) Splits into billing, technical, or general support flows
4a Slack: Send Message Posts billing/technical tickets to the right Slack channel
4b Email: Send an Email Escalates urgent issues to the support manager
4c Google Sheets: Add Row Logs every ticket for reporting and analytics

This exact architecture is used by SaaS companies running customer support on Make — one team reported cutting first-response time from 4 hours to 12 minutes after deploying a similar agent [5].


What You’ve Learned

Let’s recap what happened under the hood:

  1. You created an AI agent in Make’s dedicated configuration panel — defining its model, instructions, tools, and knowledge
  2. You built a scenario (workflow) that triggers on incoming data and passes it to the agent
  3. The agent used the ReAct pattern — it read the email, reasoned about what to do, called tools as needed, and generated a structured response
  4. A router module directed the agent’s output to the right destination based on content

The key architectural insight: Make separates agent configuration (what the agent is) from scenario wiring (how it gets invoked). This is different from n8n, where the AI Agent node and its tools live entirely within the workflow canvas. Make’s approach makes it easier to maintain one agent used across multiple scenarios, while n8n’s approach gives you more fine-grained control per workflow.


What’s Next?

You’ve built your first Make AI agent. Here are natural next steps:

  • Add real triggers: Replace the webhook with Gmail’s “Watch emails” trigger or a scheduled timer
  • Connect more tools: Give your agent access to Slack, Notion, HubSpot, or any of Make’s 3,000+ integrations
  • Refine the instructions: Add few-shot examples to handle edge cases in your specific domain
  • Deploy to production: Click the “Schedule” toggle in your scenario to run it on a timer or continuously
  • Try MCP tools: Connect external MCP servers for database lookups or internal API calls [8]

For deeper dives, check out these related posts:

Ready to build? Open Make.com, create your AI agent in the configuration panel, wire it into a scenario, and test with a real email. You’ll have a working AI assistant in under 30 minutes.


Sources

  1. Make Community — Designing Intelligent Workflows with AI Agents Challenge (2026)
  2. Make Blog — Best AI Agent Platforms of 2026: Ranked and Reviewed
  3. Reddit r/AI_Agents — “What’s the fastest way to learn AI workflow automation in 2026?” (Jun 2026)
  4. Make Blog — Announcing the Next Generation of Make AI Agents (Feb 2026)
  5. Make Help Center — Create Your First AI Agent
  6. Make Help Center — Introduction to Make AI Agents (New)
  7. Make Help Center — Tools for AI Agents
  8. Make Community — Feature Spotlight: Add MCP Tools to Make AI Agents (Jun 2026)
  9. Make Pricing — Plans & Subscription Packages
  • NiteAgent — AI agent development, frameworks, and production patterns
  • ToolBrain — tool reviews, LLM comparisons, and AI workflow guides

Cross-links automatically generated from NoCode Insider.

Reviews are independent and based on hands-on testing. Some links may be affiliate links — we earn a commission if you purchase, at no extra cost to you. This never affects our recommendations.