The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "1",
"name": "MENTE_SCANNER \u2014 Scan Giornaliero",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 6
}
]
}
},
"id": "schedule-trigger",
"name": "Ogni giorno alle 6:00",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
0,
0
]
},
{
"parameters": {
"method": "POST",
"url": "http://localhost:5001/api/scan",
"options": {
"timeout": 120000
}
},
"id": "http-scan",
"name": "Lancia Scanner",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
220,
0
]
},
{
"parameters": {
"method": "GET",
"url": "http://localhost:5001/api/digest",
"options": {}
},
"id": "http-digest",
"name": "Leggi Digest",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
440,
0
]
},
{
"parameters": {
"conditions": {
"options": {
"caseSensitive": true,
"leftValue": "",
"typeValidation": "strict"
},
"conditions": [
{
"id": "check-extractions",
"leftValue": "={{ $json.global_summary.total_extractions }}",
"rightValue": 0,
"operator": {
"type": "number",
"operation": "gt"
}
}
],
"combinator": "and"
},
"options": {}
},
"id": "if-success",
"name": "Scan OK?",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
660,
0
]
},
{
"parameters": {
"assignments": {
"assignments": [
{
"id": "set-result",
"name": "result",
"value": "=MENTE_SCANNER completato: {{ $json.global_summary.total_extractions }} estrazioni da {{ $json.files_read }} file ({{ $json.global_summary.total_decisions }} decisioni, {{ $json.global_summary.total_specs }} spec, {{ $json.global_summary.total_milestones }} milestones)",
"type": "string"
},
{
"id": "set-timestamp",
"name": "scanned_at",
"value": "={{ $json.scanned_at }}",
"type": "string"
}
]
},
"options": {}
},
"id": "set-success",
"name": "Risultato OK",
"type": "n8n-nodes-base.set",
"typeVersion": 3.4,
"position": [
880,
-60
]
},
{
"parameters": {
"assignments": {
"assignments": [
{
"id": "set-error",
"name": "result",
"value": "MENTE_SCANNER ERRORE: scan ha prodotto 0 estrazioni",
"type": "string"
}
]
},
"options": {}
},
"id": "set-error",
"name": "Risultato ERRORE",
"type": "n8n-nodes-base.set",
"typeVersion": 3.4,
"position": [
880,
120
]
}
],
"connections": {
"Ogni giorno alle 6:00": {
"main": [
[
{
"node": "Lancia Scanner",
"type": "main",
"index": 0
}
]
]
},
"Lancia Scanner": {
"main": [
[
{
"node": "Leggi Digest",
"type": "main",
"index": 0
}
]
]
},
"Leggi Digest": {
"main": [
[
{
"node": "Scan OK?",
"type": "main",
"index": 0
}
]
]
},
"Scan OK?": {
"main": [
[
{
"node": "Risultato OK",
"type": "main",
"index": 0
}
],
[
{
"node": "Risultato ERRORE",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"active": true
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
MENTE_SCANNER — Scan Giornaliero. Uses httpRequest. Scheduled trigger; 6 nodes.
Source: https://github.com/Microindustry/TITANIUM_OS/blob/main/ARCHIVE/n8n_dismesso/n8n/workflow_mente_scanner.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This template runs two scheduled workflows to govern Microsoft Entra ID (Azure AD) guest accounts by detecting stale users via Microsoft Graph, staging deletions in SharePoint with a 72-hour window, n
Spotify-Sync-Surrealdb-V1. Uses httpRequest, n8n-nodes-surrealdb, spotify. Scheduled trigger; 62 nodes.
As n8n instances scale, teams often lose track of sub-workflows—who uses them, where they are referenced, and whether they can be safely updated. This leads to inefficiencies like unnecessary copies o
This workflow is an improvement of this workflow by Greg Brzezinka.
N8N-Workflow-Github-Manager. Uses github, httpRequest, n8n. Scheduled trigger; 38 nodes.