n8n MCP Server

Productivitystdiohttp-streaming
代码仓库

Popular community MCP server that gives AI assistants deep knowledge of n8n's workflow automation nodes, their properties, and operations, and can connect to a live n8n instance to create and manage workflows. Helps agents design, validate, and deploy automations correctly by exposing node documentation, validation, and workflow management tools.

连接

将此配置添加到 .claude/mcp.json

传输方式:
{
  "mcpServers": {
    "n8n": {
      "command": "npx",
      "args": [
        "n8n-mcp"
      ],
      "env": {
        "N8N_API_URL": "<YOUR_N8N_API_URL>",
        "N8N_API_KEY": "<YOUR_N8N_API_KEY>"
      }
    }
  }
}

工具 (3)

search_nodes

Search n8n nodes by keyword and return their documentation and properties.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search term for node names or functionality"
    }
  }
}

validate_workflow

Validate an n8n workflow JSON for correctness before deployment.

{
  "type": "object",
  "required": [
    "workflow"
  ],
  "properties": {
    "workflow": {
      "type": "object",
      "description": "n8n workflow definition to validate"
    }
  }
}

create_workflow

Create a workflow on a connected n8n instance (requires API configuration).

{
  "type": "object",
  "required": [
    "workflow"
  ],
  "properties": {
    "workflow": {
      "type": "object",
      "description": "n8n workflow definition to create"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Romuald Czlonkowski (@czlonkowski)
代码仓库
https://github.com/czlonkowski/n8n-mcp
星标
0
最后更新
2026年7月12日