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.
Máy chủ liên quan
Alpha Vantage MCP Server
nhà tài trợAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Plugged.in
A comprehensive proxy that combines multiple MCP servers into a single MCP. It provides discovery and management of tools, prompts, resources, and templates across servers, plus a playground for debugging when building MCP servers.
MCP CLI
A command-line interface for interacting with Model Context Protocol servers.
MCP_Agent:RE
Fetches requirements and defect data from the TAPD platform to provide data support for AI clients.
Image Generation
Generate images from text prompts using the Together AI API.
SuperCollider MCP Server
An MCP server for the SuperCollider programming language that executes synths using supercolliderjs.
Trustwise
Advanced evaluation tools for AI safety, alignment, and performance using the Trustwise API.
40ants MCP
A framework for building Model Context Protocol (MCP) servers in Common Lisp.
Text2Sim MCP Server
A multi-paradigm simulation engine for Discrete-Event and System Dynamics, enabling natural language-based simulations via MCP.
mcpo+OpenWebUI
A secure MCP-to-OpenAPI proxy server that converts MCP tools into OpenAPI compatible HTTP servers, with support for multiple server types and automatic API documentation.
Assistant MCP Server
An MCP server that dynamically loads tools from an external JSON file configured via an environment variable.