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": "Multi-Agent Content Pipeline with PraisonAI",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "content-pipeline",
"responseMode": "responseNode",
"options": {}
},
"id": "webhook_1",
"name": "Webhook Trigger",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
250,
300
]
},
{
"parameters": {
"operation": "runAgent",
"agent": "researcher",
"query": "={{ $json.body.topic }}",
"options": {
"timeout": 300000
}
},
"id": "praisonai_researcher",
"name": "Research Agent",
"type": "n8n-nodes-praisonai.praisonAI",
"typeVersion": 1,
"position": [
500,
300
],
"credentials": {
"praisonAIApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"operation": "runAgent",
"agent": "writer",
"query": "Write an article based on this research: {{ $json.response }}",
"options": {
"timeout": 300000
}
},
"id": "praisonai_writer",
"name": "Writer Agent",
"type": "n8n-nodes-praisonai.praisonAI",
"typeVersion": 1,
"position": [
750,
300
],
"credentials": {
"praisonAIApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"operation": "runAgent",
"agent": "editor",
"query": "Edit and improve this article: {{ $json.response }}",
"options": {
"timeout": 300000
}
},
"id": "praisonai_editor",
"name": "Editor Agent",
"type": "n8n-nodes-praisonai.praisonAI",
"typeVersion": 1,
"position": [
1000,
300
],
"credentials": {
"praisonAIApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"respondWith": "json",
"responseBody": "={{ { \"topic\": $('Webhook Trigger').item.json.body.topic, \"article\": $json.response } }}"
},
"id": "respond_1",
"name": "Respond to Webhook",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
1250,
300
]
}
],
"connections": {
"Webhook Trigger": {
"main": [
[
{
"node": "Research Agent",
"type": "main",
"index": 0
}
]
]
},
"Research Agent": {
"main": [
[
{
"node": "Writer Agent",
"type": "main",
"index": 0
}
]
]
},
"Writer Agent": {
"main": [
[
{
"node": "Editor Agent",
"type": "main",
"index": 0
}
]
]
},
"Editor Agent": {
"main": [
[
{
"node": "Respond to Webhook",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "1",
"meta": {
"templateCredsSetupCompleted": true
},
"tags": []
}
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.
praisonAIApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Multi-Agent Content Pipeline with PraisonAI. Uses n8n-nodes-praisonai. Webhook trigger; 5 nodes.
Source: https://github.com/MervinPraison/n8n-nodes-praisonai/blob/0db9e01c44e70249ba29523982b67b3835c58b2d/examples/multi-agent-content-pipeline.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.
Jigsaw API key for image processing, I use this as a gatekeeper/second pair of eyes. LINK to their website https://jigsawstack.com/ SECOND A postgress DATABASE (I use Supabase) LlamaCloud for the pars
W1 - IN WhatsApp Adapter (Secure + Fast ACK). Uses postgres, redis, httpRequest. Webhook trigger; 48 nodes.
Whatsapp Multi Agent System optimized copy 2.0. Uses airtable, httpRequest, errorTrigger. Webhook trigger; 44 nodes.
Invoice Agent. Uses httpRequest, emailSend. Webhook trigger; 29 nodes.
Reputation Engine — SEO QA Agent. Uses httpRequest. Webhook trigger; 28 nodes.