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": "Engram Embedded Memory Starter",
"nodes": [
{
"parameters": {},
"id": "manual-trigger",
"name": "Run Manually",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"backend": "embedded",
"resource": "entity",
"operation": "create",
"groupId": "demo-session",
"entityName": "Engram",
"entityType": "concept",
"summary": "Knowledge graph memory for n8n AI agents"
},
"id": "create-demo-entity",
"name": "Create Demo Entity",
"type": "n8n-nodes-engram.engramExplorer",
"typeVersion": 3,
"position": [
500,
300
]
},
{
"parameters": {
"backend": "embedded",
"resource": "entity",
"operation": "list",
"groupId": "demo-session",
"limit": 10,
"offset": 0
},
"id": "list-demo-entities",
"name": "List Demo Entities",
"type": "n8n-nodes-engram.engramExplorer",
"typeVersion": 3,
"position": [
760,
300
]
}
],
"connections": {
"Run Manually": {
"main": [
[
{
"node": "Create Demo Entity",
"type": "main",
"index": 0
}
]
]
},
"Create Demo Entity": {
"main": [
[
{
"node": "List Demo Entities",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"staticData": null,
"tags": []
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Engram Embedded Memory Starter. Uses n8n-nodes-engram. Event-driven trigger; 3 nodes.
Source: https://github.com/casistack/n8n-nodes-engram/blob/main/docs/workflows/embedded-memory-starter.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.
This workflow creates an image with the new OpenAI image model "GPT-Image-1" based on a form input. Form trigger (image prompt and image size input) Generate the Image via OpenAI API. Return the image
Automated Form Submission Data Storage in Airtable. Uses formTrigger, airtable, stickyNote. Event-driven trigger; 4 nodes.
Convert Website to Markdown for RAG. Uses n8n-nodes-iterationlayer. Event-driven trigger; 4 nodes.
This n8n workflow demonstrates how to build an automated AI chat system using OpenRouter.ai. It includes a manual trigger, sets a model and user message, sends a POST request to the OpenRouter chat AP
Gitflow: 2 - Branch & PR Creation. Uses githubTrigger, github. Event-driven trigger; 3 nodes.