@basit_202/n8n-nodes-zep-memory-v2
v1.0.0
Published
n8n node for Zep Memory service - AI conversation memory management
Maintainers
Readme
n8n-nodes-zep-memory

This is an n8n community node that provides integration with Zep Memory - a fast, scalable building block for LLM apps & agents.
What is Zep?
Zep is a memory service for AI applications that enables:
- Conversation memory management
- Semantic search over conversation history
- Message classification and extraction
- Fact extraction from conversations
- Session management for AI agents and chatbots
Installation
Follow the installation guide in the n8n community nodes documentation.
Community Nodes (Recommended)
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-zep-memory - Agree to the risks of using community nodes
- Select Install
Manual Installation
To install the node locally:
# Install to n8n root folder
cd ~/.n8n
npm install n8n-nodes-zep-memoryConfiguration
Credentials
This node uses the Zep Memory API credential type. You'll need to configure:
- API URL: Your Zep server URL (e.g.,
http://localhost:8000) - API Key: Your API key for authentication (if required by your Zep installation)
Operations
The node supports three main resources:
Session
- Create: Create a new conversation session
- Get: Retrieve session information
- Update: Update session metadata
- Delete: Delete a session
Memory
- Get: Retrieve session memory (summary and facts)
- Search: Search through session memory using semantic search
Message
- Add: Add messages to a session
- Get: Retrieve messages from a session
Usage Examples
Creating a Session
- Set Resource to "Session"
- Set Operation to "Create"
- Provide a Session ID
- Optionally add User ID and Metadata
Adding Messages
- Set Resource to "Message"
- Set Operation to "Add"
- Provide Session ID
- Set Role (user/assistant/system)
- Enter the Content
Searching Memory
- Set Resource to "Memory"
- Set Operation to "Search"
- Provide Session ID
- Enter your search Query
