Socket
Book a DemoInstallSign in
Socket

n8n-nodes-zep-memory

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

n8n-nodes-zep-memory

n8n community node for Zep AI Memory Service

1.0.1
unpublished
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

n8n-nodes-zep-memory

This is an n8n community node that provides integration with Zep AI Memory Service for managing users, sessions, and conversation memories in AI-powered applications.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Node Installation

  • Go to Settings > Community Nodes
  • Select Install a community node
  • Enter n8n-nodes-zep-memory as the npm package name
  • Click Install

Manual Installation (Development)

  • Clone this repository
  • Install dependencies: npm install
  • Build the node: npm run build
  • Link to your n8n installation: npm link
  • In your n8n installation directory: npm link n8n-nodes-zep-memory

Credentials

The node requires Zep API credentials:

  • Base URL: Your Zep Memory Service URL (e.g., https://your-service.run.app)
  • API Key: Your N8N API key for authentication

Operations

User Resource

  • Create User: Create a new user with ID, email, name, and metadata
  • Get User: Retrieve user information by ID
  • Update User: Update user details
  • Delete User: Remove a user
  • List Users: Get all users

Session Resource

  • Create Session: Create a new chat session
  • Get Session: Retrieve session information
  • Update Session: Update session metadata
  • Delete Session: Remove a session
  • List Sessions: Get all sessions

Memory Resource

  • Get Memory: Retrieve conversation history for a session
  • Add Memory: Add new messages to session memory
  • Delete Memory: Clear session memory

Usage Examples

Creating a User and Session

  • Create User Node:

    • Resource: User
    • Operation: Create
    • User ID: user_123
    • Email: user@example.com
    • First Name: John
    • Last Name: Doe
  • Create Session Node:

    • Resource: Session
    • Operation: Create
    • Session ID: session_456
    • User ID: user_123
    • Metadata: {"channel": "web", "bot": "assistant"}

Adding Memory

  • Add Memory Node:
    • Resource: Memory
    • Operation: Add
    • Session ID: session_456
    • Messages:
    [
      {"role": "user", "content": "Hello, how are you?"},
      {"role": "assistant", "content": "I'm doing well, thank you! How can I help you today?"}
    ]
    

Retrieving Memory

  • Get Memory Node:
    • Resource: Memory
    • Operation: Get
    • Session ID: session_456

Message Format

Messages should follow this structure:

[
  {
    "role": "user",
    "content": "User message text"
  },
  {
    "role": "assistant", 
    "content": "Assistant response text"
  }
]

Supported roles:

  • user: Messages from the human user
  • assistant: Messages from the AI assistant
  • system: System messages (optional)

Error Handling

The node includes built-in error handling:

  • Invalid JSON in message fields will throw an error
  • API authentication failures are reported
  • Network connectivity issues are handled gracefully
  • Use "Continue on Fail" option to handle errors in workflows

Workflow Integration

This node works well with:

  • HTTP Request nodes for incoming webhooks
  • OpenAI nodes for AI responses
  • Code nodes for message processing
  • IF nodes for conditional logic
  • Set nodes for data transformation

Development

Building

npm run build

Linting

npm run lint
npm run lintfix

Publishing

npm publish

Support

License

MIT

Version History

1.0.0

  • Initial release
  • Support for User, Session, and Memory operations
  • Full CRUD operations
  • Authentication with API keys

Keywords

n8n-community-node-package

FAQs

Package last updated on 08 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.