Tag LinkedIn DM Replies with AI | n8n Marketing Automation
Manually checking every LinkedIn DM reply is a waste of time — especially when you're sending outreach at scale. With n8n and OpenAI, you can analyze incoming replies and automatically tag them based on tone or intent.
💬 Why Use AI Tagging?
- Instantly identify interested leads
- Filter out cold replies or spam
- Route warm leads to the right team
🧰 Tools Needed
- LinkedIn DM scraping tool (e.g., Phantombuster, TexAu)
- n8n with OpenAI integration
- Google Sheets, Airtable, or CRM for tagging
🔁 How It Works
- Scrape new LinkedIn DM replies into n8n
- Send reply text to OpenAI
- Label the message (e.g., Positive, Neutral, Negative)
- Store or act on that data
🧪 Sample Workflow JSON
{
"nodes": [
{
"name": "LinkedIn DM Webhook",
"type": "n8n-nodes-base.webhook",
"parameters": {
"path": "linkedin-dm",
"httpMethod": "POST"
}
},
{
"name": "Classify Intent",
"type": "n8n-nodes-base.openai",
"parameters": {
"prompt": "Classify the tone of this reply as Positive, Neutral, or Negative:
{{$json["message"]}}",
"temperature": 0.3
}
},
{
"name": "Log to Sheet",
"type": "n8n-nodes-base.googleSheets",
"parameters": {
"sheetId": "linkedindm_tags",
"range": "Replies!A:C"
}
}
]
}
This setup saves hours of manual triage — and helps your team focus on the replies that matter.