zep-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@zep-mcpSearch my knowledge graph for facts about Project Alpha"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
| Search a user's knowledge graph for facts |
| Add a fact/note to a user's knowledge graph |
| Get memory context for a thread (for prompt injection) |
| Store messages in a thread for memory extraction |
| Create or ensure a Zep user exists |
| Create a new conversation thread for a user |
Setup
npm installGet 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.mjsThe server communicates over stdio using JSON-RPC (MCP protocol).
How It Works
Zep automatically builds a knowledge graph from conversations. The typical workflow:
Create a user →
zep_create_userCreate a thread →
zep_create_threadStore messages →
zep_add_messages(Zep extracts facts automatically)Query memories →
zep_search_memoryorzep_get_contextAdd direct notes →
zep_add_note(for facts not from conversation)
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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