Integrations
Integrations are the building blocks that triggers and steps are made of. Each integration does one thing well — call an AI model, send an email, run a database query, listen for incoming webhooks. You compose automations by combining them.
This page is the catalog. Click any entry for the full configuration reference and recommendations.
Triggers vs. Actions
| Family | Where it appears | What it does |
|---|---|---|
| Triggers | The first slot of every automation | Decide when the automation runs. Exactly one per automation. |
| Actions | Every step in the body of the automation | Do the actual work — send, fetch, query, write, generate. Many per automation. |
A trigger never appears as a step, and an action never appears as a trigger. The editor only offers integrations that fit the slot you are filling.
AI & Knowledge
For prompting models, building agentic loops, and searching your knowledge bases.
- LLM Prompt — the workhorse: one prompt, one response.
- AI Agent — iterative reasoning with knowledge access. For sub-tasks that need exploration, not just a single prompt.
- Knowledge Query — search a knowledge base from inside a workflow.
- LLM Data Anonymizer — mask sensitive parts of a text before it leaves your network.
- LLM Data Deanonymizer — restore the masked parts afterwards.
Communication
- Send E-Mail — SMTP-based outgoing email.
Data & System
- HTTP Request — call any HTTP/HTTPS endpoint.
- Database Query — run SQL against MySQL, PostgreSQL, SQLite, …
- File Writer — write data to a local file.
- Spreadsheet Append — append a row to Google Sheets or a local CSV.
- Script Execution — run a bash or PowerShell script.
Time and Event Triggers
- Scheduled Task (Cron) — run at fixed times.
- HTTP Webhook — run when an external system posts to a URL.
- E-Mail Inbox — run when a new email arrives in an IMAP mailbox.
- Filesystem Watcher — run when a file appears in a directory.
- Database Listener — run when a SQL query returns new rows.
- Cloud Storage (MinIO) — run when a new object appears in a bucket.
- Calendar (ICS) — run when an ICS feed lists a new event.
- Google Calendar — run on Google Calendar changes (OAuth).
Agent-only Triggers
These triggers only appear when the automation is of type Agent.
- Chat Input — the user starts the conversation by typing.
- Form Input — the user fills in a form first.
How to read an integration page
Every integration page follows the same structure:
- What it does — one sentence.
- What you configure — a table of every field, what it controls, and whether it is required.
- Example scenario — one concrete situation where this integration shines.
- Recommendations — what to do, what to watch, what to avoid.
If you are looking for a specific configuration field, the search bar at the top of the documentation usually finds it faster than scrolling.
What to do next
- Build something with these blocks: Create a New Automation.
- Understand the wiring between blocks: Core Concepts.