N8N Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited N8N Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides tools for interacting with n8n workflow automation platform. This server enables you to manage workflows, executions, and monitor your n8n instance through MCP-compatible clients.
git clone <repository-url>
cd n8n-thg-servernpm installnpm run buildCreate a .env file or set the following environment variables:
N8N_API_KEY=your_n8n_api_key_here
N8N_BASE_URL=https://your-n8n-instance.comAdd the server to your MCP client configuration:
Add to your MCP settings file (cline_mcp_settings.json):
{
"mcpServers": {
"n8n-thg-server": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "node",
"args": ["/path/to/n8n-thg-server/build/index.js"],
"env": {
"N8N_API_KEY": "your_api_key_here",
"N8N_BASE_URL": "https://your-n8n-instance.com"
},
"autoApprove": []
}
}
}Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"n8n-thg-server": {
"command": "node",
"args": ["/path/to/n8n-thg-server/build/index.js"],
"env": {
"N8N_API_KEY": "your_api_key_here",
"N8N_BASE_URL": "https://your-n8n-instance.com"
}
}
}
}Once the MCP server is configured, you can use it through your MCP client:
n8n-thg-server/
├── src/
│ └── index.ts # Main server implementation
├── build/ # Compiled JavaScript (generated)
├── package.json # Project configuration
├── tsconfig.json # TypeScript configuration
└── README.md # This filenpm run build - Compile TypeScript to JavaScriptnpm run dev - Watch mode for developmentnpm start - Run the compiled servernpm run buildThis compiles the TypeScript source to JavaScript in the build/ directory.
If your n8n instance is protected by Cloudflare Access (common in enterprise setups), you may need additional configuration:
The server includes SSL certificate handling for self-signed certificates commonly used in enterprise environments.
N8N_BASE_URL and N8N_API_KEYSet environment variable for detailed logging:
DEBUG=true node build/index.jsMIT License - see LICENSE file for details
For issues and questions:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.