mcp-n8n-builder
by spences10·★ 83·综合分 46
MCP 服务器用于程序化创建和管理 n8n 工作流,提供全面的 API 工具集。
概述
mcp-n8n-builder 服务器通过模型上下文协议,为 AI 助手提供了全面的工具来构建、修改和管理 n8n 工作流。它包含工作流管理功能,如创建、读取、更新、删除、激活和停用工作流,以及执行管理功能。该服务器使用 Zod 进行全面的输入输出数据验证,验证节点类型是否与 n8n 中可用的节点匹配,并提供智能建议和详细的错误处理,以防止常见的工作流创建错误。
试试问 AI
装完之后,这里有 3 个你可以让 AI 做的事:
什么时候选它
如果您已经在使用n8n并希望让AI助手在没有人工干预的情况下程序化管理工作流,请选择此MCP服务器。
什么时候不要选它
如果您不使用n8n作为您的工作流自动化平台,请不要选择它,因为它与n8n的API和工作流结构紧密耦合。
此 server 暴露的工具
从 README 抽取出 10 个工具list_available_nodesLists all available nodes in the n8n instance.
list_workflowsLists all workflows from n8n with their basic information.
create_workflowCreates a new workflow in n8n with specified nodes and connections.
get_workflowRetrieves complete details of a specific workflow by its ID.
update_workflowUpdates an existing workflow with new configuration.
delete_workflowPermanently deletes a workflow by its ID.
activate_workflowActivates a workflow by its ID, enabling it to run automatically.
deactivate_workflowDeactivates a workflow by its ID, preventing it from running automatically.
list_executionsLists workflow execution history with details on success/failure status.
get_executionRetrieves detailed information about a specific workflow execution.
可对比工具
安装
使用 npx 安装:
npx -y mcp-n8n-builder通过环境变量配置:
N8N_HOST:n8n API 的 URL(默认:http://localhost:5678/api/v1)N8N_API_KEY:n8n 认证的 API 密钥OUTPUT_VERBOSITY:输出详细程度(concise或full,默认: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 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。