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 →
{
"name": "JobSearch Weekly Report",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "weeks",
"weeksInterval": 1,
"triggerAtDay": 1,
"triggerAtHour": 9
}
]
}
},
"id": "schedule-trigger",
"name": "Monday at 9 AM",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.1,
"position": [
0,
0
]
},
{
"parameters": {
"command": "jobsearch stats --output=json"
},
"id": "get-stats",
"name": "Get Overall Stats",
"type": "n8n-nodes-base.executeCommand",
"typeVersion": 1,
"position": [
220,
-100
]
},
{
"parameters": {
"command": "jobsearch list --since=7d --output=json"
},
"id": "get-week",
"name": "Get This Week",
"type": "n8n-nodes-base.executeCommand",
"typeVersion": 1,
"position": [
220,
100
]
},
{
"parameters": {
"command": "jobsearch list --output=json"
},
"id": "get-all",
"name": "Get All Conversations",
"type": "n8n-nodes-base.executeCommand",
"typeVersion": 1,
"position": [
220,
300
]
},
{
"parameters": {
"jsCode": "const stats = JSON.parse($('Get Overall Stats').item.json.stdout || '{}');\nconst thisWeek = JSON.parse($('Get This Week').item.json.stdout || '[]');\nconst all = JSON.parse($('Get All Conversations').item.json.stdout || '[]');\n\n// Count by company\nconst byCompany = {};\nall.forEach(c => {\n byCompany[c.company] = (byCompany[c.company] || 0) + 1;\n});\n\n// Count by status\nconst byStatus = {};\nall.forEach(c => {\n byStatus[c.status] = (byStatus[c.status] || 0) + 1;\n});\n\nlet body = `# Weekly Job Search Report\\n\\n`;\nbody += `## This Week\\n`;\nbody += `- New conversations: ${thisWeek.length}\\n`;\nbody += `- Companies contacted: ${[...new Set(thisWeek.map(c => c.company))].length}\\n\\n`;\n\nbody += `## Overall Stats\\n`;\nbody += `- Total conversations: ${stats.total_conversations || 0}\\n`;\nbody += `- Response rate: ${((stats.response_rate || 0) * 100).toFixed(1)}%\\n`;\nbody += `- Avg response time: ${(stats.avg_response_time_days || 0).toFixed(1)} days\\n\\n`;\n\nbody += `## By Status\\n`;\nObject.entries(byStatus).forEach(([status, count]) => {\n body += `- ${status}: ${count}\\n`;\n});\nbody += `\\n`;\n\nbody += `## Active Companies\\n`;\nObject.entries(byCompany)\n .sort((a, b) => b[1] - a[1])\n .slice(0, 10)\n .forEach(([company, count]) => {\n body += `- ${company}: ${count} conversation(s)\\n`;\n });\n\nreturn [{ json: { \n subject: `Weekly Job Search Report - ${thisWeek.length} new this week`, \n body \n}}];"
},
"id": "format-report",
"name": "Format Report",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
500,
100
]
},
{
"parameters": {
"fromEmail": "jobsearch@example.com",
"toEmail": "you@example.com",
"subject": "={{ $json.subject }}",
"text": "={{ $json.body }}"
},
"id": "send-report",
"name": "Send Report",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 2.1,
"position": [
720,
100
],
"credentials": {
"smtp": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Monday at 9 AM": {
"main": [
[
{
"node": "Get Overall Stats",
"type": "main",
"index": 0
},
{
"node": "Get This Week",
"type": "main",
"index": 0
},
{
"node": "Get All Conversations",
"type": "main",
"index": 0
}
]
]
},
"Get Overall Stats": {
"main": [
[
{
"node": "Format Report",
"type": "main",
"index": 0
}
]
]
},
"Get This Week": {
"main": [
[
{
"node": "Format Report",
"type": "main",
"index": 0
}
]
]
},
"Get All Conversations": {
"main": [
[
{
"node": "Format Report",
"type": "main",
"index": 0
}
]
]
},
"Format Report": {
"main": [
[
{
"node": "Send Report",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
smtp
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
JobSearch Weekly Report. Uses executeCommand, emailSend. Scheduled trigger; 6 nodes.
Source: https://github.com/vijay-prabhu/jobsearch-mcp/blob/debc745522f8daa8a15cebf66b14e377ea1b7605/workflows/weekly-report.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.
Daily Rackspace Ticket Report. Uses executeCommand, emailSend. Scheduled trigger; 5 nodes.
Amazon Product Price Tracker. Uses googleSheets, splitInBatches, httpRequest, emailSend. Scheduled trigger; 16 nodes.
This workflow runs every Monday at 8am to check email-related DNS records (MX, SPF, DMARC, and DKIM) for all domains in your Hostinger account and sends an HTML alert email when it detects missing rec
Datetime Googlecalendar. Uses dateTime, noOp, googleCalendar, emailSend. Scheduled trigger; 13 nodes.
Generate Weekly Energy Consumption Reports with API, Email and Google Drive. Uses httpRequest, convertToFile, emailSend, googleDrive. Scheduled trigger; 12 nodes.