zep-mcp
Click on "Deploy 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 |
Related MCP server: Mcp-ZepAi Server
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 deployed
Maintenance
Related MCP Connectors
Cloud-hosted MCP server for durable AI memory
Persistent, portable memory for AI assistants — your private memory graph, from any MCP client.
- ZapierOAuthcom.zapier
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
Personal knowledge graph as an AI memory layer over MCP - read, save, and link your memories.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceZep Cloud MCP Server: Provides memory management via the Zep Cloud API. Enables storing and retrieving user preferences, procedures, and factual relationships through a knowledge graph. Supports fallback mode for reliable operation when API is unreachable.MIT
- FlicenseNot gradedqualityDmaintenanceAn 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-
- FlicenseNot gradedqualityCmaintenanceMCP 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-
- AlicenseNot gradedqualityAmaintenanceA 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.1MIT