Skip to content

v0.7.0 - workflow lifecycle (archive, unarchive, delete)

Choose a tag to compare

@solomonneas solomonneas released this 23 May 19:51

Added

  • n8n_archive_workflow - soft-delete. Reversible, preserves the original id, deactivates as a side effect. Idempotent (archiving an already-archived workflow returns the current state). No confirm gate - safe cleanup path.
  • n8n_unarchive_workflow - restore an archived workflow. Does NOT reactivate - triggers stay off until you call n8n_activate explicitly.
  • n8n_delete_workflow - permanent delete. Confirm-gated, snapshots to backupDir as <id>-DELETED-<timestamp>.json before the DELETE; aborts if the snapshot can't be written.

Prefer n8n_archive_workflow over n8n_delete_workflow for cleanup if you want to preserve the original id.

Full diff: https://github.com/solomonneas/n8n-ops-mcp/compare/v0.6.0...v0.7.0