N8n Manager MCP Server

MCP server for n8n workflow management -- view, create, sync and manage workflows via AI.

Remote serverstreamable-httpPython

What is the N8n Manager MCP MCP server?

Most file and storage access work still happens through a UI a human drives. N8n Manager MCP MCP server moves it into the conversation instead. MCP server for n8n workflow management -- view, create, sync and manage workflows via AI.

The short version

MCP (Model Context Protocol) server for managing n8n workflows via AI assistants like Claude, Cursor, and Windsurf.

  • 18 Tools — for complete n8n workflow management
  • List, create, update, delete, and activate/deactivate workflows
  • Safety controls: read-only mode, backup-before-delete/update, local restore, and audit log
  • Multi-server support (connect to multiple n8n instances)
  • Export/Import workflows between servers
  • View execution history and status

The tools it exposes

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

  • n8n_list_workflows — List all workflows on a server
  • n8n_get_workflow — Get workflow details (nodes, connections)
  • n8n_create_workflow — Create a new workflow from nodes + connections
  • n8n_update_workflow — Update an existing workflow
  • n8n_delete_workflow — Delete a workflow
  • n8n_activate_workflow — Activate or deactivate a workflow
  • n8n_list_executions — List recent executions with status
  • n8n_export_workflow — Export workflow as importable JSON
  • n8n_import_workflow — Import workflow JSON onto a server
  • n8n_safety_status — Show local safety settings, backup directory, and audit log path
  • n8n_set_safety_mode — Toggle read-only mode, backup-before-mutation, and audit logging
  • n8n_list_backups — List local workflow backups created before mutations

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

This sits in the file and storage access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. N8n Manager MCP's toolset — n8n_list_workflows, n8n_get_workflow, n8n_create_workflow and 11 more — is a fair guide to whether it matches your workflow. It is maintained by ellmos-ai; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch N8n Manager MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
n8n_list_workflowsList all workflows on a server
n8n_get_workflowGet workflow details (nodes, connections)
n8n_create_workflowCreate a new workflow from nodes + connections
n8n_update_workflowUpdate an existing workflow
n8n_delete_workflowDelete a workflow
n8n_activate_workflowActivate or deactivate a workflow
n8n_list_executionsList recent executions with status
n8n_export_workflowExport workflow as importable JSON
n8n_import_workflowImport workflow JSON onto a server
n8n_safety_statusShow local safety settings, backup directory, and audit log path
n8n_set_safety_modeToggle read-only mode, backup-before-mutation, and audit logging
n8n_list_backupsList local workflow backups created before mutations
n8n_restore_workflowRestore a workflow from a local backup
n8n_add_serverAdd/update n8n server connection

How to install the N8n Manager MCP MCP server

{
  "mcpServers": {
    "n8n-manager": {
      "command": "npx",
      "args": ["-y", "n8n-manager-mcp"]
    }
  }
}

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

Example prompts to try

  • Use N8n Manager MCP to n8n list workflows.
  • Use N8n Manager MCP to n8n get workflow.
  • Use N8n Manager MCP to n8n create workflow.

Frequently asked questions

It connects N8n Manager MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (n8n_list_workflows, n8n_get_workflow, n8n_create_workflow, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with N8n Manager MCP directly.