- Home
- MCP servers
- ZepAi
ZepAi
- python
1
GitHub Stars
python
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"annamariakv-mcp-zepai": {
"command": "uv",
"args": [
"run",
"--directory",
"<path_to_the_mcp_directory>",
"python",
"-m",
"mcp_zepai"
],
"env": {
"ZEP_API_KEY": "YOUR_API_KEY"
}
}
}
}The ZepAi MCP Server lets you run a dedicated MCP endpoint that connects to the ZepAi module, enabling you to interact with model context data through a consistent, programmable interface. It streamlines how you start, configure, and secure the ZepAi MCP pipeline for your applications.
How to use
You run the MCP server locally and connect your MCP client to it to send and receive model context actions. Start the server with your chosen MCP directory and Python module so the server can load the ZepAi MCP implementation. Set your API key as an environment variable before starting. When the server is running, your client can request context data, submit actions, and receive responses through the MCP protocol using the standard client-server flow.
How to install
Prerequisites you need before starting the MCP server:
-
A working shell environment (bash, zsh, etc.).
-
The uv runtime available on your system. You will use uv to launch the MCP server.
-
Python installed (to run the MCP Python module within the uv command).
-
A path where you place the MCP directory that contains the ZepAi MCP module.
Follow these steps to install and prepare the server:
Step by step run flow
-
Create or choose a directory for the MCP server files.
-
Place or reference the ZepAi MCP module in that directory so the server can load it.
-
Set your ZEP API key as an environment variable before starting the server.
-
Start the server using the exact command below.
-
Verify the server is running and your MCP client can connect.
Configuration example
{
"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>"
}
}
}
}