MCP Catalogs
Home

n8n-workflow-builder

by makafeli·519·Score 52

MCP server connecting AI assistants to n8n workflows for natural language automation management.

productivitydeveloper-toolsops-infra
126
Forks
4
Open issues
2 mo ago
Last commit
2d ago
Indexed

Overview

The n8n Workflow Builder MCP Server bridges AI assistants with n8n automation, enabling full workflow management through natural language commands. It provides comprehensive CRUD operations for workflows, execution management, and tag organization. The server supports both self-hosted and cloud n8n instances, with secure API key authentication. Built with TypeScript and using the latest MCP SDK, it's designed for high performance and easy integration with popular AI clients like Claude Desktop.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Automate e-commerce order processing through AI conversation
you:Create and trigger data pipelines using natural language commands
you:Monitor and manage API integration workflows via AI assistants
you:What n8n version is compatible with this MCP server?
you:Can I use this with cloud-hosted n8n instances like n8n.cloud?

When to choose this

Teams already using n8n who want to leverage AI assistants for natural language workflow management and automation without UI interaction.

When NOT to choose this

You're not using n8n as your automation platform, or you need workflow management capabilities across multiple different automation tools simultaneously.

Tools this server exposes

12 tools extracted from the README
  • list_workflows

    List all workflows from your n8n instance

  • get_workflow

    Retrieve detailed information about a specific workflow

  • create_workflow

    Create a new workflow with nodes and connections

  • execute_workflow

    Manually execute a workflow

  • update_workflow

    Update an existing workflow's configuration

  • activate_workflow

    Activate a workflow to enable automatic execution

  • deactivate_workflow

    Deactivate a workflow to stop automatic execution

  • delete_workflow

    Permanently delete a workflow

  • create_workflow_and_activate

    Create a new workflow and immediately activate it

  • list_executions

    List workflow executions with filtering and pagination

  • get_execution

    Get detailed information about a specific execution

  • list_tags

    List all workflow tags with pagination

Comparable tools

zapier-mcpmake-com-mcpn8n-cliworkflow-automation-api

Installation

Installation & Usage

Method 1: Smithery.ai (Hosted - Recommended)
  1. Visit [smithery.ai](https://smithery.ai)
  2. Search: "n8n-workflow-builder"
  3. Connect with your n8n host and API key
Method 2: NPX (Local)
npx @makafeli/n8n-workflow-builder
Method 3: Manual Installation
git clone https://github.com/makafeli/n8n-workflow-builder.git
cd n8n-workflow-builder
npm install
npm run build
npm start
Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "n8n-workflow-builder": {
      "command": "npx",
      "args": ["@makafeli/n8n-workflow-builder"],
      "env": {
        "N8N_HOST": "http://localhost:5678",
        "N8N_API_KEY": "your-api-key-here"
      }
    }
  }
}

FAQ

What n8n version is compatible with this MCP server?
The MCP server is compatible with n8n version 1.0 and above, as it uses n8n's official REST API which has been stable across recent versions.
Can I use this with cloud-hosted n8n instances like n8n.cloud?
Yes, simply set your N8N_HOST environment variable to your cloud instance URL, e.g., 'https://your-tenant.n8n.cloud' or 'https://api.n8n.cloud/api/v1'.

Compare n8n-workflow-builder with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.