TutorialesTutorials · PrincipianteBeginner
Cómo crear tu primer agente de IA sin programar (2026)How to create your first AI agent without coding (2026)
Guía paso a paso para crear tu primer agente de IA sin escribir código con Make.com: automatiza tareas con inteligencia artificial en menos de una hora.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
Cómo crear tu primer agente de IA sin programar (2026): en esta guía vas a construir un agente que trabaja solo, usando Make.com y la IA de tu preferencia, sin escribir una sola línea de código. Un agente puede resumir correos, clasificar mensajes, guardar datos en una hoja de cálculo o responder consultas, todo en automático.
Toca cada paso para abrirlo y seguirlo.
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.
Antes de empezar: necesitas una cuenta gratuita en Make.com y, para agregar la IA, una cuenta en OpenAI (platform.openai.com) o en Anthropic (console.anthropic.com). Ambas plataformas tienen créditos de prueba gratuitos cuando creas tu cuenta.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 Crea tu cuenta en Make.comCreate your Make.com account
- Ve a https://www.make.com y aprieta Get started free.
- Regístrate con tu cuenta de Google o con tu email.
- Selecciona el plan Free cuando te lo pregunte (puedes cambiar después).
- Completa el perfil y entra a tu panel de control (dashboard).
El plan gratuito te da hasta 1,000 operaciones al mes, más que suficiente para aprender y hacer pruebas. Confirma el límite actual en la página oficial.
- 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 Crea un nuevo escenarioCreate a new scenario
En Make.com, un escenario es tu agente: una cadena de pasos conectados que se ejecutan solos cuando ocurre algo.
- En tu dashboard, aprieta el botón azul Create a new scenario (o el símbolo +).
- Verás un lienzo en blanco con un círculo vacío en el centro: ese es tu punto de partida.
- Aprieta el círculo vacío para elegir el primer paso del agente.
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 Elige el disparador (qué activa a tu agente)Choose the trigger (what activates your agent)
El disparador es el evento que pone a trabajar a tu agente. Elige uno según lo que quieras automatizar:
| Disparador | Para qué sirve |
|---|---|
| Gmail | Procesar correos que llegan |
| Google Forms | Responder formularios automáticamente |
| Webhooks | Recibir datos desde cualquier app |
| Google Sheets | Reaccionar cuando alguien llena una hoja |
| Schedule | Que el agente corra a una hora fija |
Para seguir esta guía, usa Webhooks: es el más universal y no necesita conectar ninguna app adicional.
- Busca Webhooks en la lista de módulos.
- Elige Custom webhook.
- Aprieta Add para crear el webhook y copia la URL que te da Make.com. Esta URL es la “puerta de entrada” de tu agente.
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 Conecta la inteligencia artificialConnect the artificial intelligence
Ahora le dices al agente que use IA para procesar la información que recibe.
- Aprieta el símbolo + a la derecha del módulo del webhook.
- Busca OpenAI (para ChatGPT) en la lista de módulos.
- Elige Create a Chat Completion.
- Aprieta Add para conectar tu cuenta de OpenAI con tu API key (la encuentras en platform.openai.com, sección API Keys). Confirma que tienes créditos disponibles en tu cuenta de OpenAI.
- En el campo Content, escribe el prompt que quieres que el agente use. Por ejemplo:
Resume el siguiente texto en tres puntos clave, en español:
{{1.body}}
El {{1.body}} le dice a Make.com que inserte el texto que llegó por el webhook.
Para usar Claude de Anthropic en lugar de OpenAI, busca el módulo HTTP y configura una petición a la API de Anthropic (console.anthropic.com).
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 la acción (qué hace el agente con la respuesta)Define the action (what the agent does with the response)
Ahora le dices al agente qué hacer con el resultado de la IA:
- Aprieta + después del módulo de OpenAI.
- Elige la aplicación donde quieres guardar o enviar el resultado:
| Acción | Módulo |
|---|---|
| Guardar en Google Sheets | Google Sheets → Add a Row |
| Enviar por correo | Gmail → Send an Email |
| Notificar en Slack | Slack → Create a Message |
| Guardar en Notion | Notion → Create a Page |
- Conecta la app que elegiste con tu cuenta (Make.com te guía paso a paso con OAuth).
- En el campo del contenido, usa la variable de la respuesta de OpenAI que Make.com te muestra al pasar el cursor sobre los resultados del paso anterior.
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 Prueba y activa tu agenteTest and activate your agent
- Aprieta Run once (el botón de reproducción en la esquina inferior izquierda) para hacer una prueba manual.
- Envía datos de prueba a tu webhook: abre Hoppscotch (hoppscotch.io, gratis) o cualquier cliente de API y haz una petición POST a la URL del webhook con un texto de ejemplo en el cuerpo.
- Verifica que el agente tomó el texto, lo procesó con la IA y lo guardó o envió correctamente.
- Cuando todo funcione, aprieta el interruptor OFF en la esquina inferior izquierda para cambiarlo a ON: tu agente ya está activo y corre solo.
Si algo falla, Make.com muestra el paso exacto donde ocurrió el error con un mensaje en rojo. Lo más común es una API key incorrecta o falta de créditos en OpenAI.
- 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.
Atajo: usa una plantilla listaShortcut: use a ready-made template
Make.com tiene cientos de plantillas de escenarios con IA ya configurados. Para usarlas:
- Desde tu dashboard, ve a Templates en el menú izquierdo.
- Busca “AI”, “ChatGPT” u “OpenAI” para ver las plantillas disponibles.
- Aprieta Use template en la que te interese.
- Solo conecta tus cuentas (Gmail, OpenAI, etc.) y actívala.
Algunas plantillas útiles para empezar:
- Resumir correos de Gmail con ChatGPT
- Clasificar mensajes de Slack con IA
- Responder formularios de Google Forms con IA
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
Alternativas para ir más lejosAlternatives for going further
Make.com es ideal para empezar, pero hay otras herramientas según tus necesidades:
- n8n (n8n.io): interfaz visual similar pero de código abierto. La versión gratuita se instala en tu computadora o en un servidor propio. Buena opción si quieres más control y no te importa el setup inicial. El plan cloud parte desde $35/mes (confirma en la página oficial).
- Flowise (flowiseai.com): especializado en agentes basados en LLMs con memoria, herramientas y razonamiento más sofisticado. También de código abierto y gratuito para instalarlo tú mismo.
Si quieres crear aplicaciones completas con IA (no solo automatizaciones), ve al tutorial Cómo crear una aplicación con inteligencia artificial. Y si quieres automatizar reportes de marketing, ve a Cómo automatizar informes de marketing con ChatGPT.
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.
Si algo sale malIf something goes wrong
| Problema | Solución |
|---|---|
| El webhook no recibe datos | Verifica que la URL del webhook es la correcta y que tu solicitud llega a ella |
| Error “Invalid API key” | Revisa tu API key en platform.openai.com; cópiala de nuevo sin espacios |
| No hay créditos en OpenAI | Agrega un método de pago o usa los créditos gratuitos de prueba |
| El escenario no se activa solo | Asegúrate de que el interruptor esté en ON (no solo ejecutes “Run once”) |
| La respuesta de la IA sale en inglés | Ajusta el prompt para pedir la respuesta en español |
| 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 |
Preguntas frecuentesFrequently asked questions
¿Qué es un agente de IA?What is an AI agent?
Un agente de IA es un programa que recibe información, la procesa con inteligencia artificial y toma una acción por ti (responder un correo, guardar un dato, enviar un aviso) sin que tengas que activarlo cada vez.
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.
¿Necesito saber programar para crear un agente de IA?Do I need to know how to code to create an AI agent?
No. Con Make.com arrastras bloques visuales en el navegador, sin escribir código. Es la forma más rápida de tener tu primer agente funcionando.
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.
¿Make.com es gratis?Is Make.com free?
Sí, tiene plan gratuito con hasta 1,000 operaciones al mes, suficiente para probar. Para uso real el plan Core cuesta alrededor de $10/mes. Confirma los precios actuales en su página oficial.
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.
¿Qué diferencia hay entre Make.com, n8n y Flowise?What's the difference between Make.com, n8n, and Flowise?
Make.com es 100% en la nube y el más fácil para empezar. n8n es gratis si lo instalas en tu computadora (o servidor), pero requiere algo más de setup. Flowise es la mejor opción de código abierto para agentes basados en LLMs y también requiere instalación.
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.
¿Puedo conectar mi agente a Claude o a ChatGPT?Can I connect my agent to Claude or ChatGPT?
Sí. Make.com tiene módulos para OpenAI (ChatGPT) y para la API de Anthropic (Claude). Necesitas una cuenta con créditos de API en la plataforma que elijas, aparte de tu cuenta de Make.com.
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.