Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

n8n Manager MCP

NPM · N8N-MANAGER-MCP · SCANNED AUG 3

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

Available components

+24 this week 70 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (148 of 152), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (148 of 152), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 1177 tokens (~65/item across 18 items; 18 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · n8n-manager-mcp

# add to Claude Code
claude mcp add ellmos-ai-n8n-manager-mcp -- npx -y n8n-manager-mcp
# add to Codex CLI
codex mcp add ellmos-ai-n8n-manager-mcp -- npx -y n8n-manager-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "ellmos-ai-n8n-manager-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "n8n-manager-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add ellmos-ai-n8n-manager-mcp --command npx --arg -y --arg n8n-manager-mcp
# ~/.hermes/config.yaml
mcp_servers:
  ellmos-ai-n8n-manager-mcp:
    command: "npx"
    args: ["-y", "n8n-manager-mcp"]
// mcp.json
{
  "mcpServers": {
    "ellmos-ai-n8n-manager-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "n8n-manager-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +64
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Schema quality: unverified → excellent functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Tool coverage: unverified → 100 functional
    • Licence: MIT functional
  • 1 Aug 26 −23
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −18
    • Malware scan: pass → unverified security
  • 30 Jul 26 +22
    • Tool coverage: unverified → 100 functional
  • 28 Jul 26 −22
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 148 packages

148 packages in the resolved dependency tree · 148 deprecated · 43 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 18 exposed · ~1,177 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
n8n_activate_workflow ~63

Activate or deactivate an n8n workflow.

NameTypeReqDescription
activebooleanyestrue to activate, false to deactivate
server_namestringServer name. Uses default if omitted.
workflow_idstringyesn8n workflow ID

No output schema declared.

No examples provided.

n8n_add_server ~112

Add or update an n8n server connection. The API key can be created in n8n under Settings > API.

NameTypeReqDescription
api_keystringyesn8n API key (from Settings > API in n8n)
is_defaultbooleanSet as default server
namestringyesServer name (e.g. 'production', 'staging')
urlstringyesn8n server URL (e.g. 'http://localhost:5678')

No output schema declared.

No examples provided.

n8n_create_workflow ~88

Create a new n8n workflow. Provide the full workflow JSON including nodes and connections.

NameTypeReqDescription
activatebooleanActivate workflow after creation
connectionsarrayArray of connections between nodes
namestringyesWorkflow name
nodesarrayyesArray of workflow nodes
server_namestringServer name. Uses default if omitted.

No output schema declared.

No examples provided.

n8n_delete_workflow ~63

Delete a workflow from an n8n server. By default, a JSON backup is saved before deletion.

NameTypeReqDescription
server_namestringServer name. Uses default if omitted.
workflow_idstringyesn8n workflow ID to delete

No output schema declared.

No examples provided.

n8n_describe_nodes ~43

Get information about common n8n node types. Useful for understanding which nodes to use when building workflows.

NameTypeReqDescription
categorystringFilter by category

No output schema declared.

No examples provided.

n8n_export_workflow ~70

Export a workflow from an n8n server as JSON. Returns the complete workflow definition that can be imported into another n8n instance.

NameTypeReqDescription
server_namestringServer name. Uses default if omitted.
workflow_idstringyesn8n workflow ID to export

No output schema declared.

No examples provided.

n8n_get_workflow ~59

Get detailed information about a specific n8n workflow including all nodes, connections, and settings.

NameTypeReqDescription
server_namestringServer name. Uses default if omitted.
workflow_idstringyesn8n workflow ID

No output schema declared.

No examples provided.

n8n_import_workflow ~80

Import a workflow JSON onto an n8n server. Takes a full n8n workflow JSON and creates it on the server.

NameTypeReqDescription
activatebooleanActivate after import
server_namestringTarget server name. Uses default if omitted.
workflow_jsonstringyesComplete n8n workflow JSON as string

No output schema declared.

No examples provided.

n8n_list_backups ~58

List local workflow backups created before n8n mutations.

NameTypeReqDescription
limitnumberMaximum backups to show.
server_namestringOptional server name filter.
workflow_idstringOptional workflow ID filter.

No output schema declared.

No examples provided.

n8n_list_executions ~78

List recent workflow executions on an n8n server. Shows status, timing, and errors.

NameTypeReqDescription
limitnumberMax results
server_namestringServer name. Uses default if omitted.
statusstringFilter by status
workflow_idstringFilter by workflow ID

No output schema declared.

No examples provided.

n8n_list_servers ~20

List all configured n8n server connections.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

n8n_list_workflows ~65

List all workflows on an n8n server. Returns workflow names, IDs, active status, and node counts.

NameTypeReqDescription
limitnumberMax number of workflows to return
server_namestringServer name from config. Uses default if omitted.

No output schema declared.

No examples provided.

n8n_ping_server ~36

Test the connection to an n8n server.

NameTypeReqDescription
server_namestringServer name. Uses default if omitted.

No output schema declared.

No examples provided.

n8n_remove_server ~35

Remove an n8n server from the configuration.

NameTypeReqDescription
server_namestringyesName of the server to remove

No output schema declared.

No examples provided.

n8n_restore_workflow ~109

Restore a workflow from a local backup. By default creates a new workflow; pass target_workflow_id to overwrite an existing workflow.

NameTypeReqDescription
activatebooleanActivate restored workflow after restore.
backup_pathstringyesPath returned by n8n_list_backups or mutation output.
server_namestringTarget server name. Uses default if omitted.
target_workflow_idstringExisting workflow ID to overwrite. If omitted, creates a new workflow.

No output schema declared.

No examples provided.

n8n_safety_status ~28

Show n8n Manager safety settings, backup directory, and audit log location.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

n8n_set_safety_mode ~100

Configure local safety settings: read-only mode, backup-before-mutation, and audit logging.

NameTypeReqDescription
audit_logbooleanWhen true, appends mutation outcomes to ~/.n8n-manager-mcp/audit.log.
backup_before_mutationsbooleanWhen true, exports workflows before update/delete/activate/restore.
read_onlybooleanWhen true, blocks create/update/delete/activate/import/restore operations.

No output schema declared.

No examples provided.

n8n_update_workflow ~70

Update an existing n8n workflow. Send the full updated workflow JSON.

NameTypeReqDescription
server_namestringServer name. Uses default if omitted.
workflow_idstringyesn8n workflow ID to update
workflow_jsonstringyesFull workflow JSON as string

No output schema declared.

No examples provided.