MCP ZepAi Server
A server for Zep, a long-term memory store for AI applications, requiring a ZEP_API_KEY for access.
MCP ZepAi Server
This repository contains the MCP (Model Context Protocol) server for the ZepAi module. The server is configured to run using a specific command and environment variables as detailed below.
Configuration
Below is an example configuration:
{
"mcpServers": {
"zepai": {
"command": "uv",
"args": [
"run",
"--directory",
"<path_to_the_mcp_directory>",
"python",
"-m",
"mcp_zepai"
],
"cwd": "<path_to_the_mcp_directory>",
"env": {
"ZEP_API_KEY": "<your_api_key_here>"
}
}
}
}
Key Configuration Elements
- command: The command to execute the server, in this case, using
uv
. - args: Arguments passed to the command, including the directory and module to run.
- cwd: The current working directory for the server.
- env: Environment variables required for the server, such as
ZEP_API_KEY
.
Running the Server
To run the MCP ZepAi server, ensure that the configuration file is correctly set up and execute the following command:
/opt/homebrew/bin/uv run --directory <path_to_mcp_directory> python -m mcp_zepai
Ensure that the ZEP_API_KEY
environment variable is set with a valid API key.
Related Servers
Ghidra MCP Server
Exposes binary analysis data from Ghidra, including functions and pseudocode, to LLMs.
Process Manager MCP
Manage system processes (start, stop, restart, monitor) via an MCP interface with automatic cleanup.
Local Context MCP
A collection of reference implementations for the Model Context Protocol (MCP), giving LLMs secure access to tools and data.
MCP Prompt Collector
Tools for logging, analyzing, and improving Claude Desktop prompts to enhance prompt engineering skills.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
Lilith Shell
Execute terminal commands through a secure shell interface using an AI assistant.
Advanced Unity MCP Integration
An MCP server for Unity, enabling AI assistants to interact with projects in real-time, access scene data, and execute code.
Autoconsent MCP
A server for browser automation to create and test Autoconsent rules for web page consent management.
clj-kondo-MCP
Clojure linter
FastMCP-Scala
A Scala 3 library for building Model Context Protocol (MCP) servers.