Automation Workflows
Connect EolasFlow to your existing tools and build powerful automations using no-code platforms like n8n, Zapier, or Make. Create custom workflows that trigger actions when calls complete, sync data with your CRM, or build your own MCP tools.Why Automate?
No Code Required
Build integrations visually without writing code
Connect Everything
Link EolasFlow to 500+ apps and services
Real-Time Actions
Trigger workflows instantly when calls complete
Popular Automation Platforms
| Platform | Best For | Pricing |
|---|---|---|
| n8n | Self-hosted, full control, complex workflows | Free (self-hosted) |
| Zapier | Simple automations, 5000+ app integrations | Free tier available |
| Make | Visual workflows, advanced logic | Free tier available |
Using Webhooks with n8n
n8n is a powerful open-source automation tool. Here’s how to connect it to EolasFlow.Step 1: Create a Webhook in n8n
1
Open n8n
Access your n8n instance (self-hosted or cloud).
2
Create New Workflow
Click New Workflow and give it a name like “EolasFlow Call Handler”.
3
Add Webhook Trigger
Add a Webhook node as the trigger. Select POST method.
4
Copy Webhook URL
n8n generates a unique URL like:
5
Test the Webhook
Click Listen for Test Event to activate.
Step 2: Register in EolasFlow
1
Go to Integrations
Navigate to Dashboard → Integrations → Webhooks.
2
Add Endpoint
Click Add Endpoint and enter:
- Name: n8n Call Handler
- URL: Your n8n webhook URL
- Auth: None (or add if your n8n requires it)
3
Test Connection
Click Test to verify n8n receives the request.
4
Enable on Campaign
Go to your campaign, enable webhooks, and select this endpoint.
Step 3: Build Your Workflow
Now in n8n, add nodes to process the webhook data:- Add IF node: Check if
event === "call.completed" - Add Slack node: Send message with call summary
- Connect: Webhook → IF → Slack
- Add HTTP Request node to call your CRM API
- Map fields: customer name, phone, call outcome
- Connect: Webhook → HTTP Request
Using Webhooks with Zapier
Create a Zap
1
Create New Zap
In Zapier, click Create Zap.
2
Choose Trigger
Select Webhooks by Zapier → Catch Hook.
3
Copy Webhook URL
Zapier provides a unique URL for your Zap.
4
Register in EolasFlow
Add this URL as a webhook endpoint in EolasFlow.
5
Test
Trigger a test call, then continue in Zapier to map fields.
6
Add Actions
Add actions like “Create Google Sheet Row” or “Send Email”.
Popular Zapier Actions
| Action | Use Case |
|---|---|
| Google Sheets | Log all calls to a spreadsheet |
| Gmail | Send follow-up emails after calls |
| Slack | Notify team of important calls |
| HubSpot | Update CRM contacts |
| Calendly | Schedule follow-up meetings |
Using Webhooks with Make
1
Create Scenario
In Make, create a new scenario.
2
Add Webhook Module
Add Webhooks → Custom Webhook as trigger.
3
Copy URL
Copy the generated webhook URL.
4
Register in EolasFlow
Add as webhook endpoint and test.
5
Build Flow
Add modules to process call data.
Building Custom MCP Servers
Want your AI agents to access external data during calls? Build an MCP server using n8n or your own code.MCP with n8n
You can create a simple MCP-compatible endpoint in n8n:1
Create Webhook Endpoint
Add a Webhook node that accepts POST requests.
2
Handle tools/list
Add logic to return available tools when
method === "tools/list".3
Handle tools/call
Add logic to execute tools when
method === "tools/call".4
Return JSON-RPC Response
Format responses as JSON-RPC 2.0.
MCP Server Requirements
Your MCP server must:- Accept POST requests with JSON-RPC 2.0 format
- Handle
tools/listto return available tools - Handle
tools/callto execute tools - Respond within the timeout (default 5 seconds)
For production MCP servers, consider building a dedicated service rather than using n8n for better performance.
Workflow Ideas
Post-Call CRM Update
Lead Qualification Alert
Call Analytics Dashboard
AI-Powered Follow-Up
Webhook Payload Reference
When EolasFlow sends a webhook, you receive:Best Practices
Resources
n8n Documentation
Learn n8n workflow automation
Zapier Help
Zapier guides and tutorials
Make Academy
Free Make automation courses
MCP Specification
Official MCP documentation