N8n Manager For Ai Agents MCP Server

MCP server that enables Claude Desktop to manage n8n workflow automation instances through the n8n API

Local serverstdioTypeScript

What is the N8n Manager For Ai Agents MCP server?

MCP server that enables Claude Desktop to manage n8n workflow automation instances through the n8n API. That is what the n8n manager for ai agents mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 2 tools. What each one is for:

  • Variables — Only available through source control API
  • n8n_health_check — Check API connectivity and configuration

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What it needs from you

Configuration is passed through the environment: N8N_API_URL, N8N_API_KEY, LOG_LEVEL, MCP_MODE. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. N8n Manager For Ai Agents's toolset — Variables, n8n_health_check — is a fair guide to whether it matches your workflow. It is maintained by czlonkowski; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against N8n Manager For Ai Agents's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
VariablesOnly available through source control API
n8n_health_checkCheck API connectivity and configuration

How to install the N8n Manager For Ai Agents MCP server

{
     "mcpServers": {
       "n8n-manager": {
         "command": "node",
         "args": ["/absolute/path/to/n8n-manager-for-ai-agents/build/index.js"],
         "env": {
           "N8N_API_URL": "https://your-n8n-instance.com",
           "N8N_API_KEY": "your-api-key",
           "LOG_LEVEL": "info",
           "NODE_ENV": "production",
           "MCP_MODE": "stdio"
         }
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
N8N_API_URLEndpoint or connection string the server talks to.Yes
N8N_API_KEYCredential the server authenticates with.Yes
LOG_LEVELConfiguration value read at startup.Optional
MCP_MODEConfiguration value read at startup.Optional

Example prompts to try

  • Use N8n Manager For Ai Agents to Variables.
  • Use N8n Manager For Ai Agents to n8n health check.

Frequently asked questions

It connects N8n Manager For Ai Agents to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Variables, n8n_health_check) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with N8n Manager For Ai Agents directly.