Skip to main content
Glama

ZepAI Memory Layer MCP Server

config.py792 B
""" FastMCP Server Configuration """ import os from dotenv import load_dotenv load_dotenv() class Config: """Configuration for FastMCP server""" # Memory Layer backend MEMORY_LAYER_URL = os.getenv("MEMORY_LAYER_URL", "http://localhost:8000") MEMORY_LAYER_TIMEOUT = int(os.getenv("MEMORY_LAYER_TIMEOUT", "30")) # Server settings SERVER_NAME = "ZepAI Memory Server" SERVER_VERSION = "2.0.0" # Default project ID DEFAULT_PROJECT_ID = os.getenv("DEFAULT_PROJECT_ID", "default_project") # Limits MAX_SEARCH_RESULTS = int(os.getenv("MAX_SEARCH_RESULTS", "50")) MAX_TEXT_LENGTH = int(os.getenv("MAX_TEXT_LENGTH", "100000")) MAX_CONVERSATION_MESSAGES = int(os.getenv("MAX_CONVERSATION_MESSAGES", "100")) config = Config()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NguyenTrinh3008/MTM-MCPserver'

If you have feedback or need assistance with the MCP directory API, please join our Discord server