MCP Catalogs
首页

mcp-n8n-builder

by spences10·83·综合分 46

MCP 服务器用于程序化创建和管理 n8n 工作流,提供全面的 API 工具集。

developer-toolsproductivityops-infra
26
Forks
10
活跃 Issue
本月
最近提交
2 天前
收录于

概述

mcp-n8n-builder 服务器通过模型上下文协议,为 AI 助手提供了全面的工具来构建、修改和管理 n8n 工作流。它包含工作流管理功能,如创建、读取、更新、删除、激活和停用工作流,以及执行管理功能。该服务器使用 Zod 进行全面的输入输出数据验证,验证节点类型是否与 n8n 中可用的节点匹配,并提供智能建议和详细的错误处理,以防止常见的工作流创建错误。

试试问 AI

装完之后,这里有 3 个你可以让 AI 做的事:

:AI 助手自动创建和管理工作流
:通过 MCP 将 n8n 与其他系统进行程序化集成
:批量处理和更新多个 n8n 工作流

什么时候选它

如果您已经在使用n8n并希望让AI助手在没有人工干预的情况下程序化管理工作流,请选择此MCP服务器。

什么时候不要选它

如果您不使用n8n作为您的工作流自动化平台,请不要选择它,因为它与n8n的API和工作流结构紧密耦合。

此 server 暴露的工具

从 README 抽取出 10 个工具
  • list_available_nodes

    Lists all available nodes in the n8n instance.

  • list_workflows

    Lists all workflows from n8n with their basic information.

  • create_workflow

    Creates a new workflow in n8n with specified nodes and connections.

  • get_workflow

    Retrieves complete details of a specific workflow by its ID.

  • update_workflow

    Updates an existing workflow with new configuration.

  • delete_workflow

    Permanently deletes a workflow by its ID.

  • activate_workflow

    Activates a workflow by its ID, enabling it to run automatically.

  • deactivate_workflow

    Deactivates a workflow by its ID, preventing it from running automatically.

  • list_executions

    Lists workflow execution history with details on success/failure status.

  • get_execution

    Retrieves detailed information about a specific workflow execution.

可对比工具

n8n-api-clientworkflow-mcpautomation-tools-mcp

安装

使用 npx 安装:

npx -y mcp-n8n-builder

通过环境变量配置:

  • N8N_HOST:n8n API 的 URL(默认:http://localhost:5678/api/v1
  • N8N_API_KEY:n8n 认证的 API 密钥
  • OUTPUT_VERBOSITY:输出详细程度(concisefull,默认:concise

Claude Desktop 配置:

{
  "mcpServers": {
    "n8n-workflow-builder": {
      "command": "npx",
      "args": ["-y", "mcp-n8n-builder"],
      "env": {
        "N8N_HOST": "http://localhost:5678/api/v1",
        "N8N_API_KEY": "your-n8n-api-key",
        "OUTPUT_VERBOSITY": "concise"
      }
    }
  }
}

mcp-n8n-builder 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。