Skip to main content
Glama

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.

Related MCP server: mcp-server-zep-cloud

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 MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Zep 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
  • A
    license
    Not graded
    quality
    C
    maintenance
    An MCP server that provides persistent long-term memory for AI agents via local SQLite storage with low token overhead, enabling memory storage, retrieval, and management across sessions.
    1
    MIT