# Find deprecated nodes and outdated node versions in n8n

**Use case:** 

Check an n8n workflow against the live node catalogue on api.n8n.io and list every node type n8n has deprecated and hidden from the editor panel, plus every node running a typeVersion behind the current major. Deprecated nodes keep working in existing workflows until they break, and a new workflow cannot even add one, so they are the first thing to replace when you inherit an old automation.

## Input

```json
{
  "workflowJson": {
    "name": "Legacy nightly export",
    "nodes": [
      {
        "id": "1",
        "name": "Cron",
        "type": "n8n-nodes-base.cron",
        "typeVersion": 1,
        "position": [
          0,
          0
        ],
        "parameters": {
          "triggerTimes": {
            "item": [
              {
                "mode": "everyDay",
                "hour": 2
              }
            ]
          }
        }
      },
      {
        "id": "2",
        "name": "Fetch orders",
        "type": "n8n-nodes-base.httpRequest",
        "typeVersion": 1,
        "position": [
          220,
          0
        ],
        "parameters": {
          "url": "https://erp.internal/api/orders",
          "options": {
            "timeout": 20000
          }
        }
      },
      {
        "id": "3",
        "name": "Function",
        "type": "n8n-nodes-base.function",
        "typeVersion": 1,
        "position": [
          440,
          0
        ],
        "parameters": {
          "functionCode": "return items.map(i => ({ json: { id: i.json.id } }));"
        }
      },
      {
        "id": "4",
        "name": "Item Lists",
        "type": "n8n-nodes-base.itemLists",
        "typeVersion": 1,
        "position": [
          660,
          0
        ],
        "parameters": {
          "operation": "splitOutItems",
          "fieldToSplitOut": "orders"
        }
      },
      {
        "id": "5",
        "name": "Spreadsheet File",
        "type": "n8n-nodes-base.spreadsheetFile",
        "typeVersion": 1,
        "position": [
          880,
          0
        ],
        "parameters": {
          "operation": "toFile",
          "fileFormat": "csv"
        }
      },
      {
        "id": "6",
        "name": "Write Binary File",
        "type": "n8n-nodes-base.writeBinaryFile",
        "typeVersion": 1,
        "position": [
          1100,
          0
        ],
        "parameters": {
          "fileName": "/data/orders.csv"
        }
      },
      {
        "id": "7",
        "name": "Notify",
        "type": "n8n-nodes-base.slack",
        "typeVersion": 1,
        "position": [
          1320,
          0
        ],
        "parameters": {
          "channel": "#ops",
          "text": "Export complete"
        },
        "credentials": {
          "slackApi": {
            "id": "4",
            "name": "Slack account"
          }
        }
      }
    ],
    "connections": {
      "Cron": {
        "main": [
          [
            {
              "node": "Fetch orders",
              "type": "main",
              "index": 0
            }
          ]
        ]
      },
      "Fetch orders": {
        "main": [
          [
            {
              "node": "Function",
              "type": "main",
              "index": 0
            }
          ]
        ]
      },
      "Function": {
        "main": [
          [
            {
              "node": "Item Lists",
              "type": "main",
              "index": 0
            }
          ]
        ]
      },
      "Item Lists": {
        "main": [
          [
            {
              "node": "Spreadsheet File",
              "type": "main",
              "index": 0
            }
          ]
        ]
      },
      "Spreadsheet File": {
        "main": [
          [
            {
              "node": "Write Binary File",
              "type": "main",
              "index": 0
            }
          ]
        ]
      },
      "Write Binary File": {
        "main": [
          [
            {
              "node": "Notify",
              "type": "main",
              "index": 0
            }
          ]
        ]
      }
    },
    "settings": {}
  },
  "workflowUrls": [],
  "workflowIds": [],
  "activeOnly": false,
  "ruleSet": "maintainability",
  "minSeverity": "low",
  "ignoreRules": [],
  "includeReport": false
}
```

## Output

```json
{
  "severity": {
    "label": "Severity",
    "format": "string"
  },
  "rule": {
    "label": "Rule ID",
    "format": "string"
  },
  "ruleTitle": {
    "label": "Rule",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "workflowName": {
    "label": "Workflow",
    "format": "string"
  },
  "nodeName": {
    "label": "Node",
    "format": "string"
  },
  "nodeType": {
    "label": "Node type",
    "format": "string"
  },
  "message": {
    "label": "Finding",
    "format": "string"
  },
  "parameterPath": {
    "label": "Parameter",
    "format": "string"
  },
  "evidence": {
    "label": "Evidence (masked)",
    "format": "string"
  },
  "remediation": {
    "label": "How to fix",
    "format": "string"
  },
  "docsUrl": {
    "label": "Docs",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [n8n Workflow Auditor - Linter & Security Review](https://apify.com/mediocre_interest/n8n-workflow-auditor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mediocre_interest/n8n-workflow-auditor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/mediocre_interest/n8n-workflow-auditor.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
