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": "MERL-T Main Integration",
"nodes": [
{
"parameters": {
"path": "/api/query",
"options": {}
},
"name": "Main Endpoint",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"workflowId": "preprocessing"
},
"name": "Preprocessing",
"type": "n8n-nodes-base.executeWorkflow",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"workflowId": "orchestration"
},
"name": "Orchestration",
"type": "n8n-nodes-base.executeWorkflow",
"typeVersion": 1,
"position": [
650,
300
]
},
{
"parameters": {
"functionCode": "// Combine results and prepare response\nconst results = $input.body;\nreturn {\n json: {\n \"query\": results.original_query,\n \"answer\": results.reasoning_result,\n \"confidence\": results.confidence_score,\n \"rlcf_metrics\": results.rlcf_metrics,\n \"execution_time\": results.total_time\n }\n}"
},
"name": "Format Response",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
850,
300
]
}
],
"connections": {
"Main Endpoint": {
"main": [
[
{
"node": "Preprocessing",
"type": "main",
"index": 0
}
]
]
},
"Preprocessing": {
"main": [
[
{
"node": "Orchestration",
"type": "main",
"index": 0
}
]
]
},
"Orchestration": {
"main": [
[
{
"node": "Format Response",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
MERL-T Main Integration. Webhook trigger; 4 nodes.
Source: https://github.com/capazme/MERL-T_alpha/blob/b4a6b8eaae540acb16eed9d8260521369746f276/n8n/workflows/main.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.
A production-ready authentication workflow implementing secure user registration, login, token verification, and refresh token mechanisms. Perfect for adding authentication to any application without
Portfolio Orchestrator. Uses httpRequest. Webhook trigger; 59 nodes.
This n8n template demonstrates how a simple Multi-Layer Perceptron (MLP) neural network can predict housing prices. The prediction is based on four key features, processed through a three-layer model.
github code Try yourself
This workflow contains community nodes that are only compatible with the self-hosted version of n8n.