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": "OMNIKAI - Tor Integration Agent",
"nodes": [
{
"parameters": {},
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"command": "sudo apt update && sudo apt install tor -y && sudo systemctl enable tor && sudo systemctl start tor"
},
"name": "Install Tor",
"type": "n8n-nodes-base.executeCommand",
"typeVersion": 1,
"position": [
460,
300
]
},
{
"parameters": {
"command": "echo 'HiddenServiceDir /var/lib/tor/n8n_service/' | sudo tee -a /etc/tor/torrc && echo 'HiddenServicePort 80 127.0.0.1:5678' | sudo tee -a /etc/tor/torrc && sudo systemctl restart tor && sudo cat /var/lib/tor/n8n_service/hostname"
},
"name": "Setup Onion Service",
"type": "n8n-nodes-base.executeCommand",
"typeVersion": 1,
"position": [
680,
300
]
},
{
"parameters": {
"functionCode": "return [{json: {message: 'Tor-Netzwerk eingerichtet. Onion-Adresse siehe vorherigen Output.'}}];"
},
"name": "Confirm Setup",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
900,
300
]
},
{
"parameters": {
"functionCode": "const axios = require('axios');\n(async () => {\n await axios.post('http://<onion-url>/webhook/xyz', {}, {\n proxy: { host: '127.0.0.1', port: 9050, protocol: 'socks5' }\n });\n})();\nreturn [{json: {status: 'Agent triggered via Tor'}}];"
},
"name": "Trigger Agent via Tor",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
1120,
300
]
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Install Tor",
"type": "main",
"index": 0
}
]
]
},
"Install Tor": {
"main": [
[
{
"node": "Setup Onion Service",
"type": "main",
"index": 0
}
]
]
},
"Setup Onion Service": {
"main": [
[
{
"node": "Confirm Setup",
"type": "main",
"index": 0
}
]
]
},
"Confirm Setup": {
"main": [
[
{
"node": "Trigger Agent via Tor",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
OMNIKAI - Tor Integration Agent. Uses start, executeCommand. Manual trigger; 5 nodes.
Source: https://github.com/xXNewbiXx/OMNIKAI-Aufbau/blob/d65b1f197bee23a36c0652c3f15e3150197dbb13/flows/n8n/tor-integration.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.
Ejemplos de Expresiones. Uses start, httpRequest. Manual trigger; 5 nodes.
Lemanti - Fluxo Completo com WhatsApp, Gmail, AI Agent. Uses start, httpRequest, aiAgent. Manual trigger; 5 nodes.
YouTube2Post - Video to Article Generator. Uses executeCommand, httpRequest, itemLists, errorTrigger. Webhook trigger; 15 nodes.
Context-Aware Agent - Reminder Automation. Uses httpRequest, executeCommand. Scheduled trigger; 8 nodes.
Clara Pipeline A - Demo to Agent v1. Uses executeCommand, readBinaryFile. Event-driven trigger; 7 nodes.