AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

N8n Mcp Server

mcp-illuminaresolutions-n8n-mcp-server · by illuminaresolutions

MCP server implementation for n8n workflow automation

No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add mcp-illuminaresolutions-n8n-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-illuminaresolutions-n8n-mcp-server)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of N8n Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

n8n MCP Server

An MCP server that provides access to n8n workflows, executions, credentials, and more through the Model Context Protocol. This allows Large Language Models (LLMs) to interact with n8n instances in a secure and standardized way.

Installation

Get your n8n API Key

  1. Log into your n8n instance
  2. Click your user icon in the bottom left
  3. Go to Settings
  4. Select API
  5. Click "Create API Key"
  6. Copy your API key (you won't be able to see it again)

Install the MCP Server

Option 1: Install from npm (Recommended)
npm install -g @illuminaresolutions/n8n-mcp-server
Option 2: Install from Source
  1. Clone the repository:

``bash git clone https://github.com/illuminaresolutions/n8n-mcp-server.git cd n8n-mcp-server ``

  1. Install dependencies and build:

``bash npm install npm run build ``

  1. Start the server in the background:

``bash nohup npm start > n8n-mcp.log 2>&1 & ``

To stop the server: ``bash pkill -f "node build/index.js" ``

Note: When installing from npm, the server will be available as n8n-mcp-server in your PATH.

Configuration

Claude Desktop

  1. Open your Claude Desktop configuration:

`` ~/Library/Application Support/Claude/claude_desktop_config.json ``

  1. Add the n8n configuration:

``json { "mcpServers": { "n8n": { "command": "n8n-mcp-server", "env": { "N8N_HOST": "https://your-n8n-instance.com", "N8N_API_KEY": "your-api-key-here" } } } } ``

Cline (VS Code)

  1. Install the server (follow Installation steps above)
  2. Open VS Code
  3. Open the Cline extension from the left sidebar
  4. Click the 'MCP Servers' icon at the top of the pane
  5. Scroll to bottom and click 'Configure MCP Servers'
  6. Add to the opened settings file:

``json { "mcpServers": { "n8n": { "command": "n8n-mcp-server", "env": { "N8N_HOST": "https://your-n8n-instance.com", "N8N_API_KEY": "your-api-key-here" } } } } ``

  1. Save the file
  2. Ensure the MCP toggle is enabled (green) and the status indicator is green
  3. Start using MCP commands in Cline

Sage

Coming soon! The n8n MCP server will be available through:

  • Smithery.ai marketplace
  • Import from Claude Desktop

For now, please use Claude Desktop or Cline.

Validation

After configuration:

  1. Restart your LLM application
  2. Ask: "List my n8n workflows"
  3. You should see your workflows listed

If you get an error:

  • Check that your n8n instance is running
  • Verify your API key has correct permissions
  • Ensure N8N_HOST has no trailing slash

Features

Core Features

  • List and manage workflows
  • View workflow details
  • Execute workflows
  • Manage credentials
  • Handle tags and executions
  • Generate security audits
  • Manage workflow tags

Enterprise Features

These features require an n8n Enterprise license:

  • Project management
  • Variable management
  • Advanced user management

Troubleshooting

Common Issues

  1. "Client not initialized"
  • Check N8NHOST and N8NAPI_KEY are set correctly
  • Ensure n8n instance is accessible
  • Verify API key permissions
  1. "License required"
  • You're trying to use an Enterprise feature
  • Either upgrade to n8n Enterprise or use core features only
  1. Connection Issues
  • Verify n8n instance is running
  • Check URL protocol (http/https)
  • Remove trailing slash from N8N_HOST

Security Best Practices

  1. API Key Management
  • Use minimal permissions necessary
  • Rotate keys regularly
  • Never commit keys to version control
  1. Instance Access
  • Use HTTPS for production
  • Enable n8n authentication
  • Keep n8n updated

Support

License

[MIT License](LICENSE)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.