n
n8n
n8n MCP server that gives AI assistants access to n8n node documentation, properties, operations, and workflow automation context.
Share:
About
n8n MCP server that gives AI assistants access to n8n node documentation, properties, operations, and workflow automation context.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about n8n.
- What does the n8n MCP server offer to AI assistants?
- The n8n MCP server provides AI assistants with access to n8n node documentation, properties, operations, and pertinent workflow automation context. This facilitates dynamic interaction with n8n's capabilities.
- How can I authenticate with the n8n MCP server?
- Authentication to the n8n MCP server is performed using an API key. This key must be securely configured within your MCP client environment to establish a connection.
- Does the n8n MCP server enable direct workflow execution?
- The n8n MCP server primarily exposes context about n8n for AI assistants. Its core function is to provide documentation and operational details rather than executing workflows directly.
- Are there any specific prerequisites for using the n8n MCP server?
- A prerequisite for using the n8n MCP server is a running instance of n8n. The server provides a bridge for AI to interact with an existing n8n environment.
- How do I install and configure the n8n MCP server in a client like Claude Desktop?
- Installation and configuration depend on the specific MCP client. Typically, you would add the server's repository URL and configure the API key within the client's settings for external model context providers.
Install n8n
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"n8n": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-n8n"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"n8n": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-n8n"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"n8n": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-n8n"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.