Datasets:
Update README.md
Browse filesn8n-master-corpus
The n8n-master-corpus is a massive, curated dataset of 36,405 labeled n8n automation workflows. It serves as a definitive resource for training LLMs
on workflow generation, analyzing automation patterns, or quickly finding ready-to-use templates for the n8n ecosystem.
π Highlights
- Scale: 36,405 unique workflows.
- Copy-Paste Ready: The workflow_json column contains the exact JSON structure required by n8n.
- Diversity: Includes workflows ranging from simple logic to complex AI-Agent integrations and MCP server implementations.
- Labeled: Metadata includes node counts, integration types, and categories.
π Dataset Structure
Each entry in the dataset contains the following fields:
βββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Field β Description β
βββββββββββββββββΌββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β workflow_id β Original unique identifier for the workflow. β
β workflow_name β Descriptive name of the automation. β
β node_count β Number of nodes within the workflow. β
β integrations β JSON list of third-party services used (e.g., Slack, Google Sheets, OpenAI). β
β category β The thematic pack or source the workflow belongs to. β
β workflow_json β The core data. A stringified JSON object compatible with n8n's "Import from File" or "Paste" functionality. β
βββββββββββββββββ΄ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
π οΈ How to Use
In Python (Datasets Library)
- Load the dataset using the datasets library.
- Access any row and parse the workflow_json string using the standard json library.
- Use the resulting dictionary as needed for training or analysis.
In n8n
- Obtain the workflow_json string for any entry.
- In your n8n canvas, press Ctrl + V (or Cmd + V) and paste the JSON string directly.
- The workflow will instantly manifest with all nodes and connections intact.
π Source & Provenance
This dataset is a collection of curated community packs, synthetic generations, and lab-tested AI automations. It includes workflows from the AI
Automation Lab, Community Mega-Pack, and specialized Synapse Pro-Ops collections.
βοΈ License
This dataset is released under the Apache-2.0 license. Individual workflow logic remains subject to the licenses of their original respective authors
where applicable.
|
@@ -24,4 +24,19 @@ configs:
|
|
| 24 |
data_files:
|
| 25 |
- split: train
|
| 26 |
path: data/train-*
|
| 27 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
data_files:
|
| 25 |
- split: train
|
| 26 |
path: data/train-*
|
| 27 |
+
license: apache-2.0
|
| 28 |
+
task_categories:
|
| 29 |
+
- text-generation
|
| 30 |
+
- feature-extraction
|
| 31 |
+
language:
|
| 32 |
+
- en
|
| 33 |
+
tags:
|
| 34 |
+
- n8n
|
| 35 |
+
- automation
|
| 36 |
+
- workflow
|
| 37 |
+
- low-code
|
| 38 |
+
- agents
|
| 39 |
+
- mcp
|
| 40 |
+
size_categories:
|
| 41 |
+
- 10K<n<100K
|
| 42 |
+
---
|