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.
Connect
Add this configuration to .claude/mcp.json
Transport:
{
"mcpServers": {
"n8n": {
"command": "npx",
"args": [
"n8n-mcp"
],
"env": {
"N8N_API_URL": "<YOUR_N8N_API_URL>",
"N8N_API_KEY": "<YOUR_N8N_API_KEY>"
}
}
}
}Tools (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"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Repository
- https://github.com/czlonkowski/n8n-mcp
- Stars
- 0
- Last Updated
- July 12, 2026