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": "think-instance",
"nodes": [
{
"id": "Start",
"parameters": {},
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"id": "Claude",
"parameters": {
"url": "https://api.anthropic.com/v1/messages",
"method": "POST",
"body": "{\"prompt\": \"TODO: dynamic prompt\"}",
"headers": {
"x-api-key": "={{$env.CLAUDE_API_KEY}}"
}
},
"name": "Claude (placeholder)",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
500,
300
],
"notes": "TODO: replace with official Claude node; use env CLAUDE_API_KEY"
},
{
"id": "Format",
"parameters": {
"keepOnlySet": true,
"values": {
"string": [
{
"name": "response",
"value": "={{$json.body}}"
}
]
}
},
"name": "Format Response",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
760,
300
]
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Claude (placeholder)",
"type": "main",
"index": 0
}
]
]
},
"Claude (placeholder)": {
"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
think-instance. Uses start, httpRequest. Manual trigger; 3 nodes.
Source: https://github.com/xXNewbiXx/OMNIKAI-Aufbau/blob/d65b1f197bee23a36c0652c3f15e3150197dbb13/flows/n8n/think-instance.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.
API Integration. Uses start, httpRequest, json. Manual trigger; 4 nodes.
webhook request v0.24.0 beta. Uses start, httpRequest. Manual trigger; 2 nodes.
FTS. Uses httpRequest, itemLists, functionItem, start. Manual trigger; 16 nodes.
CBPF. Uses start, httpRequest, itemLists. Manual trigger; 13 nodes.
Claude Prompt Pre-Processor (Pro V2). Uses start, httpRequest, returnJson. Manual trigger; 10 nodes.