Tutorials · Beginner
How to create your first AI agent without coding (2026)
Step-by-step guide to creating your first AI agent without coding using Make.com: automate tasks with artificial intelligence in under an hour.
- Make.com
- OpenAI
- Claude
How to create your first AI agent without coding (2026): in this guide you’ll build an agent that works on its own, using Make.com and your preferred AI, without writing a single line of code. An agent can summarize emails, classify messages, save data to a spreadsheet, or answer queries, all automatically.
Tap each step to open and follow it.
Before you start: you need a free Make.com account and, to add the AI, an account on OpenAI (platform.openai.com) or Anthropic (console.anthropic.com). Both platforms offer free trial credits when you create your account.
1 Create your Make.com account
- Go to https://www.make.com and click Get started free.
- Sign up with your Google account or email.
- Select the Free plan when prompted (you can upgrade later).
- Complete your profile and enter your dashboard.
The free plan gives you up to 1,000 operations per month, more than enough to learn and test. Confirm the current limit on the official page.
2 Create a new scenario
In Make.com, a scenario is your agent: a chain of connected steps that run automatically when something happens.
- In your dashboard, click the blue Create a new scenario button (or the + symbol).
- You’ll see a blank canvas with an empty circle in the center: that’s your starting point.
- Click the empty circle to choose the first step of your agent.
3 Choose the trigger (what activates your agent)
The trigger is the event that puts your agent to work. Choose one based on what you want to automate:
| Trigger | What it does |
|---|---|
| Gmail | Process incoming emails |
| Google Forms | Respond to forms automatically |
| Webhooks | Receive data from any app |
| Google Sheets | React when someone fills a sheet |
| Schedule | Run the agent at a set time |
To follow this guide, use Webhooks: it’s the most universal and doesn’t require connecting any extra app.
- Search for Webhooks in the module list.
- Choose Custom webhook.
- Click Add to create the webhook and copy the URL Make.com gives you. This URL is the “entry door” of your agent.
4 Connect the artificial intelligence
Now you tell the agent to use AI to process the information it receives.
- Click the + symbol to the right of the webhook module.
- Search for OpenAI (for ChatGPT) in the module list.
- Choose Create a Chat Completion.
- Click Add to connect your OpenAI account with your API key (find it on platform.openai.com, under API Keys). Confirm you have available credits in your OpenAI account.
- In the Content field, write the prompt you want the agent to use. For example:
Summarize the following text in three key points:
{{1.body}}
The {{1.body}} tells Make.com to insert the text that arrived via the webhook.
To use Anthropic’s Claude instead of OpenAI, search for the HTTP module and configure a request to the Anthropic API (console.anthropic.com).
5 Define the action (what the agent does with the response)
Now you tell the agent what to do with the AI result:
- Click + after the OpenAI module.
- Choose the app where you want to save or send the result:
| Action | Module |
|---|---|
| Save to Google Sheets | Google Sheets → Add a Row |
| Send by email | Gmail → Send an Email |
| Notify in Slack | Slack → Create a Message |
| Save in Notion | Notion → Create a Page |
- Connect the app you chose with your account (Make.com guides you step by step with OAuth).
- In the content field, use the OpenAI response variable that Make.com shows when you hover over the previous step’s results.
6 Test and activate your agent
- Click Run once (the play button in the bottom left corner) for a manual test.
- Send test data to your webhook: open Hoppscotch (hoppscotch.io, free) or any API client and make a POST request to the webhook URL with sample text in the body.
- Verify that the agent took the text, processed it with AI, and correctly saved or sent it.
- When everything works, click the OFF toggle in the bottom left corner to switch it to ON: your agent is now active and runs on its own.
If something fails, Make.com shows you the exact step where the error occurred with a red message. The most common causes are an incorrect API key or missing credits in OpenAI.
Shortcut: use a ready-made template
Make.com has hundreds of pre-built scenario templates with AI already configured. To use them:
- From your dashboard, go to Templates in the left menu.
- Search for “AI”, “ChatGPT”, or “OpenAI” to see available templates.
- Click Use template on the one you want.
- Just connect your accounts (Gmail, OpenAI, etc.) and activate it.
Some useful templates to start with:
- Summarize Gmail emails with ChatGPT
- Classify Slack messages with AI
- Answer Google Forms with AI
Alternatives for going further
Make.com is ideal for starting out, but there are other tools depending on your needs:
- n8n (n8n.io): similar visual interface but open-source. The free version is installed on your computer or your own server. A good option if you want more control and don’t mind the initial setup. The cloud plan starts from $35/mo (confirm on the official page).
- Flowise (flowiseai.com): specialized in LLM-based agents with memory, tools, and more sophisticated reasoning. Also open-source and free to self-host.
If you want to build full applications with AI (not just automations), go to the tutorial How to create an application with artificial intelligence. And if you want to automate marketing reports, see How to automate marketing reports with ChatGPT.
If something goes wrong
| Problem | Fix |
|---|---|
| The webhook doesn’t receive data | Check that the webhook URL is correct and your request reaches it |
| ”Invalid API key” error | Check your API key on platform.openai.com; copy it again without spaces |
| No credits in OpenAI | Add a payment method or use free trial credits |
| The scenario doesn’t activate on its own | Make sure the toggle is ON (not just “Run once”) |
| The AI responds in English | Adjust the prompt to request the response in Spanish |
Frequently asked questions
What is an AI agent?
An AI agent is a program that receives information, processes it with artificial intelligence, and takes an action for you (reply to an email, save data, send a notification) without you needing to trigger it each time.
Do I need to know how to code to create an AI agent?
No. With Make.com you drag visual blocks in the browser, with no coding required. It's the fastest way to get your first agent running.
Is Make.com free?
Yes, it has a free plan with up to 1,000 operations per month, enough to test. For real use the Core plan costs around $10/mo. Confirm current prices on their official page.
What's the difference between Make.com, n8n, and Flowise?
Make.com is 100% cloud-based and the easiest to start with. n8n is free if you install it on your computer or server, but needs a bit more setup. Flowise is the best open-source option for LLM-based agents and also requires installation.
Can I connect my agent to Claude or ChatGPT?
Yes. Make.com has modules for OpenAI (ChatGPT) and the Anthropic API (Claude). You need an account with API credits on whichever platform you choose, separate from your Make.com account.