n8n MCP Server
Provides tools for managing n8n workflows, executions, credentials, tags, variables, projects, users, and system operations like security audits and community package management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@n8n MCP ServerList all active workflows in n8n"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
n8n MCP Server
A Model Context Protocol (MCP) server that wraps the n8n self-hosted REST API, letting Claude (and any MCP-compatible LLM client) manage your n8n instance through natural language.
Features
30+ tools covering:
Domain | Operations |
Workflows | list, get, create, update, delete, activate, deactivate, archive, unarchive, manage tags |
Executions | list, get, delete, retry, stop |
Credentials | list, get, get schema, create, update, delete, test |
Tags | list, create, update, delete |
Variables | list, create, update, delete |
Projects | list, create |
Users | list |
System | security audit, discover API capabilities, manage community packages |
Related MCP server: n8n MCP Server
Prerequisites
Node.js 18+
A self-hosted n8n instance (v1.0+)
An n8n REST API key (see Getting an API Key)
Getting an API Key
Open your n8n instance
Go to Settings → n8n API
Click Create an API key
Copy the generated key — you will not be able to see it again
The API key inherits the permissions of the user who created it. Use an owner account to unlock all tools (credential listing, user management, audit).
Installation
git clone https://git.verzth.work/mcp/n8n.git
cd n8n
npm install
npm run buildConfiguration
Claude Desktop
Add the following entry to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"n8n": {
"command": "node",
"args": ["/absolute/path/to/n8n/dist/index.js"],
"env": {
"N8N_BASE_URL": "https://your-n8n-instance.example.com",
"N8N_API_KEY": "your-api-key-here"
}
}
}
}Replace /absolute/path/to/n8n with the actual directory where you cloned the repo.
Claude Code (CLI)
Add to your project's .claude/settings.json or global ~/.claude/settings.json:
{
"mcpServers": {
"n8n": {
"command": "node",
"args": ["/absolute/path/to/n8n/dist/index.js"],
"env": {
"N8N_BASE_URL": "https://your-n8n-instance.example.com",
"N8N_API_KEY": "your-api-key-here"
}
}
}
}Environment Variables
Variable | Required | Description |
| ✅ | Base URL of your n8n instance (e.g. |
| ✅ | API key from n8n Settings → n8n API |
Usage Examples
Once configured, you can ask Claude things like:
List all active workflows in n8nShow me the last 10 failed executionsActivate the workflow named "Daily Report"Create a new tag called "production" and apply it to workflow abc123Test the Slack credentialRun a security audit on my n8n instanceWhat community packages do I have installed?Development
# Install dependencies
npm install
# Build TypeScript
npm run build
# Watch mode (auto-rebuild on change)
npm run devProject Structure
src/
├── index.ts # Entry point — server init + transport
├── types.ts # TypeScript interfaces
├── constants.ts # Shared constants (limits, pagination)
├── services/
│ └── n8n-client.ts # Axios client + error handler
└── tools/
├── workflows.ts # Workflow management tools
├── executions.ts # Execution management tools
├── credentials.ts # Credential management tools
├── tags.ts # Tag management tools
├── variables.ts # Variable management tools
└── misc.ts # Projects, users, audit, packagesTransport
This server uses stdio transport, which means it runs as a subprocess of the MCP client. It does not expose any network ports and all authentication credentials are passed via environment variables — they never touch the codebase.
Security Notes
API keys are read from environment variables only — never hardcode them
The server only talks to the n8n instance you configure
Destructive tools (
delete,uninstall) are annotated withdestructiveHint: trueso clients can prompt for confirmationCredential secret data is intentionally excluded from
n8n_list_credentialsandn8n_get_credentialresponses (n8n API design — secrets are write-only)
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/verzth/mcp-n8n'
If you have feedback or need assistance with the MCP directory API, please join our Discord server