Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
IT Security NachrichtenOne URL, Three Different Tricks, (Thu, Sep 24th)(24.09.2026 um 08:25 Uhr)
IT Security NachrichtenGartner: 41 Prozent der CISOs melden Deepfakes(24.09.2026 um 08:04 Uhr)
AI & KI NachrichtenJobstart: Rund die Hälfte erwartet KI-Kenntnisse(24.09.2026 um 08:05 Uhr)
AI & KI NachrichtenIT-Dienstleister im Vergleich 2026 - CHIP(24.09.2026 um 01:15 Uhr)
IT Security NachrichtenGefahren durch Berlins exfiltrierte Verwaltungsdaten - IT&Production(24.09.2026 um 02:51 Uhr)
IT Security NachrichtenWeb, Cloud und Security zusammen denken - Swiss IT Magazine(24.09.2026 um 06:56 Uhr)
IT Security NachrichtenAnzeige KI in der IT-Sicherheit für Pentesting und Resilienz - Golem.de(24.09.2026 um 07:20 Uhr)
IT Security NachrichtenOne URL, Three Different Tricks, (Thu, Sep 24th)(24.09.2026 um 08:25 Uhr)
IT Security NachrichtenGartner: 41 Prozent der CISOs melden Deepfakes(24.09.2026 um 08:04 Uhr)
AI & KI NachrichtenJobstart: Rund die Hälfte erwartet KI-Kenntnisse(24.09.2026 um 08:05 Uhr)
AI & KI NachrichtenIT-Dienstleister im Vergleich 2026 - CHIP(24.09.2026 um 01:15 Uhr)
IT Security NachrichtenGefahren durch Berlins exfiltrierte Verwaltungsdaten - IT&Production(24.09.2026 um 02:51 Uhr)
IT Security NachrichtenWeb, Cloud und Security zusammen denken - Swiss IT Magazine(24.09.2026 um 06:56 Uhr)
IT Security NachrichtenAnzeige KI in der IT-Sicherheit für Pentesting und Resilienz - Golem.de(24.09.2026 um 07:20 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

🤖 Build Make.com Automation Scenarios with AI Using MCP

Have you ever wanted to build complex Make.com automation scenarios using natural language? What if your AI assistant could understand Make.com's 200+ base modules and help you create, validate, and deploy scenarios in seconds? Enter…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Have you ever wanted to build complex Make.com automation scenarios using natural language? What if your AI assistant could understand Make.com's 200+ base modules and help you create, validate, and deploy scenarios in seconds?



Enter make-mcp-server - an unofficial Model Context Protocol (MCP) server that brings Make.com's powerful automation platform directly into your AI workflow.






🎯 What is MCP?



The Model Context Protocol is a standardized way for AI assistants (like Claude Desktop, Cursor, or any MCP-compatible client) to interact with external tools and services. Think of it as a universal adapter that lets your AI assistant "talk" to different platforms.






🚀 What Can You Do?



With make-mcp-server, you can:






✅ Search 200+ Make.com Modules






"Find modules for sending Slack notifications"






Returns comprehensive information about Slack modules with parameters, examples, and documentation.






🔍 Get Detailed Module Information






"Show me how to use the Google Sheets Add Row module"






Get parameter schemas, configuration examples, and best practices.






🧠 Validate Scenarios Before Deployment






"Check if this scenario is valid: [blueprint JSON]"






Auto-healing validation that catches errors, suggests fixes, and validates data flow.






🚢 Deploy Directly to Make.com






"Create this scenario in my Make.com account"






One command deploys your AI-generated scenario to production.






📦 Quick Setup






Prerequisites




  • Node.js 18+

  • Make.com account (sign up free)

  • Make.com API token






Installation






For Claude Desktop:





  1. Get your Make.com credentials:




    • Team ID: Found in your Make.com dashboard URL

    • API Token: Settings → API → Generate Token

    • Region: Check your Make.com URL (eu1, eu2, us1, us2)



  2. Configure Claude Desktop:




Edit your claude_desktop_config.json:




{
"mcpServers": {
"make-mcp-server": {
"command": "npx",
"args": ["-y", "make-mcp-server@latest"],
"env": {
"MAKE_API_KEY": "your-api-token",
"MAKE_TEAM_ID": "your-team-id",
"MAKE_API_URL": "https://eu2.make.com/api/v2"
}
}
}
}








  1. Restart Claude Desktop - The MCP server icon should appear.






For Cursor IDE:



Add to your Cursor settings (Ctrl+Shift+P → "MCP: Edit Config"):




{
"mcpServers": {
"make-mcp-server": {
"command": "npx",
"args": ["-y", "make-mcp-server@latest"],
"env": {
"MAKE_API_KEY": "your-api-token",
"MAKE_TEAM_ID": "your-team-id",
"MAKE_API_URL": "https://eu2.make.com/api/v2"
}
}
}
}









🎨 Real-World Examples






Example 1: Slack → Notion Integration



Prompt to Claude:




"Create a Make.com scenario that monitors a Slack channel for messages containing 'bug report', extracts the content, and creates a new page in Notion with the report details."




What happens:




  1. Searches for Slack and Notion modules

  2. Builds the scenario structure with proper routing

  3. Validates the blueprint for errors

  4. Deploys to your Make.com account






Example 2: GitHub → Discord Notifications



Prompt:




"Build a scenario that watches GitHub for new pull requests and posts them to Discord with formatting."




Result: A working scenario with GitHub webhook trigger, data mapping, and Discord message formatting.






Example 3: Complex Multi-Step Workflow



Prompt:




"Create a scenario that: 1) Triggers daily at 9 AM, 2) Fetches data from Airtable, 3) Uses a router to split records by status, 4) Sends different email templates via Gmail, 5) Logs results to Google Sheets"




Result: Complete scenario with scheduler, Airtable integration, router logic, conditional branching, and logging.






🔧 Available Tools



The MCP server exposes these tools:




































Tool Description
search_modules Search 200+ Make modules by keyword/app
get_module Get detailed info about a specific module
list_apps Browse all available Make.com apps
search_templates Find pre-built scenario templates
validate_scenario Check blueprint validity with auto-healing
create_scenario Deploy scenario to Make.com





⚡ Advanced Features






Auto-Healing Validation



The validator doesn't just find errors - it fixes them:




// Invalid: Missing required parameters
{
"module": "google-sheets:addRow",
"parameters": {
"spreadsheet": "abc123"
// Missing 'sheetName' parameter
}
}

// Auto-healed:
{
"module": "google-sheets:addRow",
"parameters": {
"spreadsheet": "abc123",
"sheetName": "Sheet1" // ✅ Added with default
}
}









Router Support



Build complex conditional workflows:




{
"modules": [
{
"id": 1,
"module": "webhook:trigger"
},
{
"id": 2,
"module": "router",
"routes": [
{
"filter": "{{status}} = 'urgent'",
"modules": [/* urgent path */]
},
{
"filter": "{{status}} = 'normal'",
"modules": [/* normal path */]
}
]
}
]
}









Template Discovery



Browse 500+ pre-built templates:




"Show me templates for e-commerce automation"






Returns categorized templates with difficulty ratings and module lists.






🔐 Security & Disclaimer



⚠️ Important: This is an unofficial, community-built project. It is:




  • ✅ NOT affiliated with Make.com

  • ✅ NOT officially supported

  • ✅ Open source and transparent

  • ✅ Uses official Make.com APIs



Always review scenarios before deployment - AI can make mistakes!






🌟 Why Use This?






For Developers:





  • 10x faster scenario creation

  • Natural language → working automation

  • Instant documentation lookup

  • No more clicking through UI menus






For AI Enthusiasts:




  • See MCP in action

  • Learn how AI agents interact with external tools

  • Build your own MCP servers






For Make.com Users:




  • Rapid prototyping

  • Complex scenario scaffolding

  • Template discovery

  • Validation before deployment






🛣️ Roadmap




  • [ ] Support for more Make.com features

  • [ ] Visual scenario builder integration

  • [ ] Scenario testing framework

  • [ ] Community template sharing

  • [ ] Improved error recovery






🤝 Contributing



This is an open-source project! Contributions welcome:








📚 Resources








🎓 Tutorial: Your First AI-Powered Scenario



Let's build a simple RSS → Email notification scenario with Claude:



Step 1: Set up the MCP server (see Installation above)



Step 2: Prompt Claude:




"Create a Make.com scenario that:
- Checks an RSS feed every hour
- Filters for items with 'AI' in the title
- Sends me an email with the article link"






Step 3: Claude will:




  1. Search for RSS and Email modules

  2. Configure the schedule trigger

  3. Set up filtering logic

  4. Build the email template

  5. Ask if you want to deploy



Step 4: Review and deploy!






🔥 Hot Tips





  1. Be specific: "Use Gmail" vs "Send email"


  2. Provide context: Share your data structure


  3. Iterate: Ask Claude to refine the scenario


  4. Test first: Use Make.com's test mode


  5. Review always: AI is powerful but not perfect






🎉 Get Started Now!






# Quick test (no installation)
npx make-mcp-server --help

# Install globally
npm install -g make-mcp-server

# Check version
make-mcp-server --version






Then configure your AI assistant and start building!









📈 Stats




  • 200+ Make.com modules supported

  • 🎯 500+ templates searchable

  • 🔧 6 powerful tools for AI agents

  • 💪 Auto-healing validation with smart fixes

  • 🚀 1-command deployment to production






⭐ Star the repo: github.com/danishashko/make-mcp



📦 Try it now: npx make-mcp-server






Built with 🧡 by the community. Not affiliated with Make.com.

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - 🤖 Build Make.com Automation Scenarios with AI Using MCP
id: 1aebc9b5-4792-4bff-8aa8-c083072aa127
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "🤖 Build Make.com Automation Sc" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich 🤖 Build Make.com Automation Scenarios wi.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten 🤖 Build Make.com Automation Scenarios with AI Using MCP

Thematisch verwandte Begriffe: Build, Makecom, Automation, Scenarios · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-96676 | A vulnerability was identified in Fast FAC1900R 20190827_2.0.2. The impa…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick