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
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Neo
sponsorNEO MCP lets Claude Code, Cursor and VS Code hand off complex AI engineering tasks like AI model evals, AI agent optimization and more to NEO.
Flux Schnell MCP Server
A text-to-image generation server using the Flux Schnell model.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers, without authentication.
Process Manager MCP
Manage long-running bash processes and persist their logs.
Repomix
Packs code repositories into a single, AI-friendly file using the repomix tool.
Togello MCP Server
An MCP server for managing application context using the Togello API.
DeepSeek MCP Server
A server for code generation and completion using the DeepSeek API.
MCP Server for iOS Simulator
Programmatically control iOS simulators via stdio transport. Requires macOS with Xcode and installed iOS simulators.
Memory Bank MCP
An AI-assisted development plugin that maintains persistent project context using structured markdown files for goals, decisions, and progress.
mcp-server template
A template for creating MCP (ModelContextProvider) servers, configurable via environment variables.
Criage MCP Server
An MCP server for the Criage package manager, providing full client functionality via the MCP protocol.