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
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
MCP SSH Server
Securely execute remote commands and perform file operations over SSH, with support for both password and key-based authentication.
Tox Testing
Executes tox commands to run Python tests with pytest. Requires the TOX_APP_DIR environment variable to be set.
Code-Index-MCP
A local-first code indexer that enhances LLMs with deep code understanding. It integrates with AI assistants via the Model Context Protocol (MCP) and supports AI-powered semantic search.
MCP Command Server
A secure server for executing pre-approved system commands via an environment variable.
MCP Sandbox
Execute Python code and install packages safely within isolated Docker containers.
Lighthouse MCP Server
Audit web performance, accessibility, and SEO using Google Lighthouse.
Enrichr MCP Server
Performs gene set enrichment analysis using the Enrichr API, supporting all available gene set libraries.
Phabricator
Interacting with Phabricator API
MCPAgent
An intelligent agent framework based on MCP, supporting multiple large language models and tool integrations for testing single-agent effectiveness.
MCP Client for Ollama
A Python client that connects local LLMs via Ollama to Model Context Protocol servers, enabling them to use tools.