Skip to main content
Glama
jaysack

zep-mcp

by jaysack

Zep Cloud MCP Server

An MCP (Model Context Protocol) server that wraps the Zep Cloud API, giving AI assistants long-term memory via Zep's knowledge graph.

Tools

Tool

Description

zep_search_memory

Search a user's knowledge graph for facts

zep_add_note

Add a fact/note to a user's knowledge graph

zep_get_context

Get memory context for a thread (for prompt injection)

zep_add_messages

Store messages in a thread for memory extraction

zep_create_user

Create or ensure a Zep user exists

zep_create_thread

Create a new conversation thread for a user

Related MCP server: knowledgeplane

Setup

npm install

Get your API key from Zep Cloud.

Usage

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "zep": {
      "command": "node",
      "args": ["/absolute/path/to/zep-mcp/server.mjs"],
      "env": {
        "ZEP_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "zep": {
      "command": "node",
      "args": ["/absolute/path/to/zep-mcp/server.mjs"],
      "env": {
        "ZEP_API_KEY": "your-api-key"
      }
    }
  }
}

OpenClaw / mcporter

{
  "mcpServers": {
    "zep": {
      "command": "node",
      "args": ["./path/to/zep-mcp/server.mjs"],
      "env": {
        "ZEP_API_KEY": "your-api-key"
      }
    }
  }
}

Standalone

ZEP_API_KEY=your-api-key node server.mjs

The server communicates over stdio using JSON-RPC (MCP protocol).

How It Works

Zep automatically builds a knowledge graph from conversations. The typical workflow:

  1. Create a userzep_create_user

  2. Create a threadzep_create_thread

  3. Store messageszep_add_messages (Zep extracts facts automatically)

  4. Query memorieszep_search_memory or zep_get_context

  5. Add direct noteszep_add_note (for facts not from conversation)

License

MIT

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    An MCP server that integrates the ZepAi module to provide long-term memory and retrieval capabilities for AI applications. It allows models to interact with Zep's services through a standardized interface using an API key.
    1
  • F
    license
    -
    quality
    C
    maintenance
    MCP server that gives AI agents and teams persistent, shared memory using a knowledge graph with vector embeddings, automatic consolidation of related facts, and hybrid search.
    3
  • A
    license
    -
    quality
    A
    maintenance
    A universal MCP server providing persistent, structured memory through a knowledge graph with graph storage, semantic vector search, and multi-hop traversal for AI agents and IDEs.
    1
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    A lightweight MCP server that provides persistent knowledge graph storage for AI assistants, enabling memory across sessions through entity-relationship storage with JSON file persistence.
    10
    1

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jaysack/zep-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server