.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/leonardsellem/n8n-mcp-server
home/mcp-servers/leonardsellem/n8n-mcp-server
leonardsellem avatar

n8n-mcp-server

byleonardsellem· 2 MCP servers

Installs

5.0k

Stars

1.6k

Forks

292

Category

Backend & APIs

View on GitHub

TL;DR

A Model Context Protocol (MCP) server that allows AI assistants to interact with n8n workflows through natural language.

How to install n8n-mcp-server?

leonardsellem/n8n-mcp-server
$git clone https://github.com/leonardsellem/n8n-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install n8n-mcp-server by running `git clone https://github.com/leonardsellem/n8n-mcp-server`, then use it for the current task and follow its documentation at https://github.com/leonardsellem/n8n-mcp-server.

Files · 1

View on GitHub
README.md
1# n8n MCP Server
2 
3[![npm version](https://badge.fury.io/js/%40leonardsellem%2Fn8n-mcp-server.svg)](https://badge.fury.io/js/%40leonardsellem%2Fn8n-mcp-server)
4 
5A Model Context Protocol (MCP) server that allows AI assistants to interact with n8n workflows through natural language.
6 
7## Overview
8 
9This project provides a Model Context Protocol (MCP) server that empowers AI assistants to seamlessly interact with n8n, a popular workflow automation tool. It acts as a bridge, enabling AI assistants to programmatically manage and control n8n workflows and executions using natural language commands.
10 
11## Installation
12 
13### Prerequisites
14 
15- Node.js 20 or later
16- n8n instance with API access enabled
17 
18### Install from npm
19 
20```bash
21npm install -g @leonardsellem/n8n-mcp-server
22```
23 
24### Install from source
25 
26```bash
27# Clone the repository
28git clone https://github.com/leonardsellem/n8n-mcp-server.git
29cd n8n-mcp-server
30 
31# Install dependencies
32npm install
33 
34# Build the project
35npm run build
36 
37# Optional: Install globally
38npm install -g .
39```
40 
41### Docker Installation
42 
43You can also run the server using Docker:
44 
45```bash
46# Pull the image
47docker pull leonardsellem/n8n-mcp-server
48 
49# Run the container with your n8n API configuration
50docker run -e N8N_API_URL=http://your-n8n:5678/api/v1 \
51 -e N8N_API_KEY=your_n8n_api_key \
52 -e N8N_WEBHOOK_USERNAME=username \
53 -e N8N_WEBHOOK_PASSWORD=password \
54 leonardsellem/n8n-mcp-server
55```
56 
57## Updating the Server
58 
59How you update the server depends on how you initially installed it.
60 
61### 1. Installed globally via npm
62 
63If you installed the server using `npm install -g @leonardsellem/n8n-mcp-server`:
64 
651. Open your terminal or command prompt.
662. Run the following command to get the latest version:
67 ```bash
68 npm install -g @leonardsellem/n8n-mcp-server@latest
69 ```
703. If the server is currently running (e.g., as a background process or service), you'll need to restart it for the changes to take effect.
71 
72### 2. Installed from source
73 
74If you cloned the repository and installed from source:
75 
761. Open your terminal or command prompt.
772. Navigate to the directory where you cloned the project:
78 ```bash
79 cd path/to/n8n-mcp-server
80 ```
813. If you've made any local changes to the code that you want to keep, consider stashing them (optional):
82 ```bash
83 git stash
84 ```
85 You can apply them later with `git stash pop`.
864. Pull the latest changes from the repository (assuming you are on the `main` branch):
87 ```bash
88 git pull origin main
89 ```
90 If you are on a different branch, replace `main` with your branch name.
915. Install or update any changed dependencies:
92 ```bash
93 npm install
94 ```
956. Rebuild the project to include the latest updates:
96 ```bash
97 npm run build
98 ```
997. If you previously installed it globally from this source folder using `npm install -g .`, you might want to run this command again to update the global link:
100 ```bash
101 npm install -g .
102 ```
1038. Restart the server.
104 * If you run the server directly using a command like `node build/index.js` in your AI assistant's MCP configuration, ensure the path is still correct. Using `npm install -g .` and then `n8n-mcp-server` as the command should keep this consistent.
105 
106### 3. Using Docker
107 
108If you are running the server using Docker:
109 
1101. Pull the latest image from Docker Hub:
111 ```bash
112 docker pull leonardsellem/n8n-mcp-server:latest
113 ```
1142. Stop and remove your old container. You'll need your container's name or ID (you can find it using `docker ps`):
115 ```bash
116 docker stop <your_container_name_or_id>
117 docker rm <your_container_name_or_id>
118 ```
1193. Start a new container with the updated image. Use the same `docker run` command you used previously, including all your necessary environment variables (refer to the "Docker Installation" section for an example command). For instance:
120 ```bash
121 docker run -e N8N_API_URL=http://your-n8n:5678/api/v1 \
122 -e N8N_API_KEY=your_n8n_api

Preview

leonardsellem/n8n-mcp-serverleonardsellem/n8n-mcp-server

# n8n MCP Server

[![npm version](https://badge.fury.io/js/%40leonardsellem%2Fn8n-mcp-server.svg)](https://badge.fury.io/js/%40leonardsellem%2Fn8n-mcp-server)

A Model Context Protocol (MCP) server that allows AI assistants to interact with n8n workflows through natural language.

## Overview

Repoleonardsellem/n8n-mcp-server
TypeMCP Servers
CategoryBackend & APIs
UpdatedJul 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. tadata-org avatarfastapi_mcpAutomatic MCP server generator for FastAPI applications - converts FastAPI endpoints to MCP tools for LLM integrationMCP ServersNov 202519M12k
  2. ivnvxd avatarmcp-server-odooA Model Context Protocol server for Odoo ERP systemsMCP ServersJul 2026551k349
  3. pantalytics avatarodoo-mcp-proAI connector for Odoo ERP -- connect Claude, ChatGPT, and other AI tools to Odoo via MCP (Model Context Protocol)MCP ServersJul 2026551k65
  4. cap-js avatarmcp-serverModel Context Protocol (MCP) server for AI-assisted development of CAP applications.MCP ServersJul 2026295k105
  5. punitarani avatarfliA Python wrapper for Google Flights APIMCP ServersJul 2026211k3.1k
  6. meilisearch avatarmeilisearch-mcpMCP server for MeilisearchMCP ServersJun 202661k194